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

Unified Diff: components/resource_provider/resource_provider_app.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
Index: components/resource_provider/resource_provider_app.h
diff --git a/components/resource_provider/resource_provider_app.h b/components/resource_provider/resource_provider_app.h
index 5861abe2470be40d1e5ece74bfcde0cf58f46583..db2cf63326be5a2a569c90f210e288ff371c3cf7 100644
--- a/components/resource_provider/resource_provider_app.h
+++ b/components/resource_provider/resource_provider_app.h
@@ -17,20 +17,21 @@
namespace resource_provider {
-class ResourceProviderApp : public mojo::ShellClient,
- public mojo::InterfaceFactory<ResourceProvider> {
+class ResourceProviderApp : public shell::ShellClient,
+ public shell::InterfaceFactory<ResourceProvider> {
public:
explicit ResourceProviderApp(const std::string& resource_provider_app_url);
~ResourceProviderApp() override;
private:
- // mojo::ShellClient:
- void Initialize(mojo::Connector* connector, const mojo::Identity& identity,
+ // shell::ShellClient:
+ void Initialize(shell::Connector* connector,
+ const shell::Identity& identity,
uint32_t id) override;
- bool AcceptConnection(mojo::Connection* connection) override;
+ bool AcceptConnection(shell::Connection* connection) override;
- // mojo::InterfaceFactory<ResourceProvider>:
- void Create(mojo::Connection* connection,
+ // shell::InterfaceFactory<ResourceProvider>:
+ void Create(shell::Connection* connection,
mojo::InterfaceRequest<ResourceProvider> request) override;
mojo::TracingImpl tracing_;
« no previous file with comments | « components/resource_provider/public/cpp/resource_loader.cc ('k') | components/resource_provider/resource_provider_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698