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

Unified Diff: services/catalog/entry.h

Issue 1882423004: Move shell service to toplevel shell namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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 | « services/catalog/catalog.cc ('k') | services/catalog/entry.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/catalog/entry.h
diff --git a/services/catalog/entry.h b/services/catalog/entry.h
index 48ad1fb7d6b6765f9d40f699a5c954a5798a0389..6d382e6b832f385eea4a5980e6e189dd63d41b38 100644
--- a/services/catalog/entry.h
+++ b/services/catalog/entry.h
@@ -46,8 +46,8 @@ class Entry {
void set_display_name(const std::string& display_name) {
display_name_ = display_name;
}
- const mojo::CapabilitySpec& capabilities() const { return capabilities_; }
- void set_capabilities(const mojo::CapabilitySpec& capabilities) {
+ const shell::CapabilitySpec& capabilities() const { return capabilities_; }
+ void set_capabilities(const shell::CapabilitySpec& capabilities) {
capabilities_ = capabilities;
}
const Entry* package() const { return package_; }
@@ -59,7 +59,7 @@ class Entry {
base::FilePath path_;
std::string qualifier_;
std::string display_name_;
- mojo::CapabilitySpec capabilities_;
+ shell::CapabilitySpec capabilities_;
Entry* package_ = nullptr;
std::set<Entry*> applications_;
};
« no previous file with comments | « services/catalog/catalog.cc ('k') | services/catalog/entry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698