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

Unified Diff: mojo/services/catalog/store.h

Issue 1775113003: Morph CapabilityFilter into caps::Capabilities, which supports capability classes (yet unimplemente… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@44cattests
Patch Set: . Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/services/catalog/entry.cc ('k') | mojo/services/catalog/store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/catalog/store.h
diff --git a/mojo/services/catalog/store.h b/mojo/services/catalog/store.h
index 74309b687f22c82c6ea4dacfb7a1d9a7d2e465b2..cb763d510fcee4abe0728eb8419a6d7e906292d8 100644
--- a/mojo/services/catalog/store.h
+++ b/mojo/services/catalog/store.h
@@ -14,15 +14,24 @@ namespace catalog {
// contents of the store, so no one else must modify its contents.
class Store {
public:
+ // Value is an integer.
+ static const char kManifestVersionKey[];
// Value is a string.
static const char kNameKey[];
// Value is a string.
static const char kQualifierKey[];
// Value is a string.
static const char kDisplayNameKey[];
- // Value is a dictionary that maps from the filter to a list of string
- // interfaces.
+ // Value is a dictionary.
static const char kCapabilitiesKey[];
+ // Value is a dictionary.
+ static const char kCapabilities_ProvidedKey[];
+ // Value is a dictionary.
+ static const char kCapabilities_RequiredKey[];
+ // Value is a list.
+ static const char kCapabilities_ClassesKey[];
+ // Value is a list.
+ static const char kCapabilities_InterfacesKey[];
virtual ~Store() {}
« no previous file with comments | « mojo/services/catalog/entry.cc ('k') | mojo/services/catalog/store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698