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

Unified Diff: services/catalog/catalog.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 | « mojo/public/cpp/bindings/tests/versioning_test_service.cc ('k') | services/catalog/catalog.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/catalog/catalog.h
diff --git a/services/catalog/catalog.h b/services/catalog/catalog.h
index 48cda4c6218409fa29996785f8f988686f33d27f..9301e53c106fe1b9188e11733b26b31e48e63127 100644
--- a/services/catalog/catalog.h
+++ b/services/catalog/catalog.h
@@ -26,13 +26,13 @@ class Store;
struct ReadManifestResult {
ReadManifestResult();
~ReadManifestResult();
- mojo::shell::mojom::ResolveResultPtr resolve_result;
+ shell::mojom::ResolveResultPtr resolve_result;
scoped_ptr<Entry> catalog_entry;
base::FilePath package_dir;
};
class Catalog : public mojom::Resolver,
- public mojo::shell::mojom::ShellResolver,
+ public shell::mojom::ShellResolver,
public mojom::Catalog {
public:
// |manifest_provider| may be null.
@@ -43,7 +43,7 @@ class Catalog : public mojom::Resolver,
~Catalog() override;
void BindResolver(mojom::ResolverRequest request);
- void BindShellResolver(mojo::shell::mojom::ShellResolverRequest request);
+ void BindShellResolver(shell::mojom::ShellResolverRequest request);
void BindCatalog(mojom::CatalogRequest request);
private:
@@ -59,7 +59,7 @@ class Catalog : public mojom::Resolver,
const mojo::String& scheme,
const ResolveProtocolSchemeCallback& callback) override;
- // mojo::shell::mojom::ShellResolver:
+ // shell::mojom::ShellResolver:
void ResolveMojoName(const mojo::String& mojo_name,
const ResolveMojoNameCallback& callback) override;
@@ -96,7 +96,7 @@ class Catalog : public mojom::Resolver,
base::TaskRunner* const file_task_runner_;
mojo::BindingSet<mojom::Resolver> resolver_bindings_;
- mojo::BindingSet<mojo::shell::mojom::ShellResolver> shell_resolver_bindings_;
+ mojo::BindingSet<shell::mojom::ShellResolver> shell_resolver_bindings_;
mojo::BindingSet<mojom::Catalog> catalog_bindings_;
// The current user's packages, constructed from Store/package manifests.
« no previous file with comments | « mojo/public/cpp/bindings/tests/versioning_test_service.cc ('k') | services/catalog/catalog.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698