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

Unified Diff: mash/wm/window_manager_application.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 | « mash/wm/root_window_controller.cc ('k') | mash/wm/window_manager_application.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mash/wm/window_manager_application.h
diff --git a/mash/wm/window_manager_application.h b/mash/wm/window_manager_application.h
index ffa0e355c2c8245703e12f5a717374495b3844ea..a0d77ddc338961d3f00ccb9a2a7775e93e32c16e 100644
--- a/mash/wm/window_manager_application.h
+++ b/mash/wm/window_manager_application.h
@@ -47,15 +47,15 @@ class RootWindowsObserver;
class UserWindowControllerImpl;
class WindowManagerApplication
- : public mojo::ShellClient,
+ : public shell::ShellClient,
public mus::mojom::WindowManagerFactory,
- public mojo::InterfaceFactory<mash::wm::mojom::UserWindowController>,
- public mojo::InterfaceFactory<mus::mojom::AcceleratorRegistrar> {
+ public shell::InterfaceFactory<mash::wm::mojom::UserWindowController>,
+ public shell::InterfaceFactory<mus::mojom::AcceleratorRegistrar> {
public:
WindowManagerApplication();
~WindowManagerApplication() override;
- mojo::Connector* connector() { return connector_; }
+ shell::Connector* connector() { return connector_; }
// Returns the RootWindowControllers that have valid roots.
//
@@ -86,18 +86,19 @@ class WindowManagerApplication
private:
void OnAcceleratorRegistrarDestroyed(AcceleratorRegistrarImpl* registrar);
- // 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;
// InterfaceFactory<mash::wm::mojom::UserWindowController>:
- void Create(mojo::Connection* connection,
+ void Create(shell::Connection* connection,
mojo::InterfaceRequest<mash::wm::mojom::UserWindowController>
request) override;
// InterfaceFactory<mus::mojom::AcceleratorRegistrar>:
- void Create(mojo::Connection* connection,
+ void Create(shell::Connection* connection,
mojo::InterfaceRequest<mus::mojom::AcceleratorRegistrar> request)
override;
@@ -106,7 +107,7 @@ class WindowManagerApplication
mojo::InterfaceRequest<mus::mojom::WindowTreeClient>
client_request) override;
- mojo::Connector* connector_;
+ shell::Connector* connector_;
mojo::TracingImpl tracing_;
« no previous file with comments | « mash/wm/root_window_controller.cc ('k') | mash/wm/window_manager_application.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698