| // Copyright 2016 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "services/catalog/store.h" |
| |
| namespace catalog { |
| |
| // static |
| const char Store::kManifestVersionKey[] = "manifest_version"; |
| // static |
| const char Store::kNameKey[] = "name"; |
| // static |
| const char Store::kQualifierKey[] = "process-group"; |
| // static |
| const char Store::kDisplayNameKey[] = "display_name"; |
| // static |
| const char Store::kCapabilitiesKey[] = "capabilities"; |
| // static |
| const char Store::kCapabilities_ProvidedKey[] = "provided"; |
| // static |
| const char Store::kCapabilities_RequiredKey[] = "required"; |
| // static |
| const char Store::kCapabilities_ClassesKey[] = "classes"; |
| // static |
| const char Store::kCapabilities_InterfacesKey[] = "interfaces"; |
| // static |
| const char Store::kApplicationsKey[] = "applications"; |
| |
| } // namespace catalog |