| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef SERVICES_CATALOG_STORE_H_ | 5 #ifndef SERVICES_CATALOG_STORE_H_ |
| 6 #define SERVICES_CATALOG_STORE_H_ | 6 #define SERVICES_CATALOG_STORE_H_ |
| 7 | 7 |
| 8 namespace catalog { | 8 namespace catalog { |
| 9 | 9 |
| 10 // TODO(rockot): Clean this up now that it's only a namespace for constants. | 10 // TODO(rockot): Clean this up now that it's only a namespace for constants. |
| 11 // Alternatively, re-introduce a Store interface once it makes sense to do so. | 11 // Alternatively, re-introduce a Store interface once it makes sense to do so. |
| 12 class Store { | 12 class Store { |
| 13 public: | 13 public: |
| 14 // Value is a string. | 14 // Value is a string. |
| 15 static const char kNameKey[]; | 15 static const char kNameKey[]; |
| 16 // Value is a string. | 16 // Value is a string. |
| 17 static const char kDisplayNameKey[]; | 17 static const char kDisplayNameKey[]; |
| 18 // Value is a dictionary. | 18 // Value is a dictionary. |
| 19 static const char kInterfaceProviderSpecsKey[]; | 19 static const char kInterfaceProviderSpecsKey[]; |
| 20 // Value is a dictionary. | 20 // Value is a dictionary. |
| 21 static const char kInterfaceProviderSpecs_ProvidesKey[]; | 21 static const char kInterfaceProviderSpecs_ProvidesKey[]; |
| 22 // Value is a dictionary. | 22 // Value is a dictionary. |
| 23 static const char kInterfaceProviderSpecs_RequiresKey[]; | 23 static const char kInterfaceProviderSpecs_RequiresKey[]; |
| 24 // Value is a list. | 24 // Value is a list. |
| 25 static const char kServicesKey[]; | 25 static const char kServicesKey[]; |
| 26 // Value is a dictionary. |
| 27 static const char kRequiredFilesKey[]; |
| 28 // Value is a string. |
| 29 static const char kRequiredFilesKey_PathKey[]; |
| 30 // Value is a string. |
| 31 static const char kRequiredFilesKey_PlatformKey[]; |
| 32 static const char kRequiredFilesKey_PlatformValue_Windows[]; |
| 33 static const char kRequiredFilesKey_PlatformValue_Linux[]; |
| 34 static const char kRequiredFilesKey_PlatformValue_MacOSX[]; |
| 35 static const char kRequiredFilesKey_PlatformValue_Android[]; |
| 26 }; | 36 }; |
| 27 | 37 |
| 28 } // namespace catalog | 38 } // namespace catalog |
| 29 | 39 |
| 30 #endif // SERVICES_CATALOG_STORE_H_ | 40 #endif // SERVICES_CATALOG_STORE_H_ |
| OLD | NEW |