Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(233)

Side by Side Diff: services/catalog/store.h

Issue 2684433003: Files required by a service now listed in manifest. (Closed)
Patch Set: Fix build. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « services/catalog/public/cpp/manifest_parsing_util.cc ('k') | services/catalog/store.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_
OLDNEW
« no previous file with comments | « services/catalog/public/cpp/manifest_parsing_util.cc ('k') | services/catalog/store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698