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

Unified Diff: components/mus/ws/client_connection.h

Issue 1644773004: Renames some WindowManager classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleanup Created 4 years, 11 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 | « components/mus/ws/access_policy.h ('k') | components/mus/ws/client_connection.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/mus/ws/client_connection.h
diff --git a/components/mus/ws/client_connection.h b/components/mus/ws/client_connection.h
index 37f8fc961fb7357f7f177c1da76225c5cf99f541..4227977caca067ac55f53a6273b2de5367ca20a1 100644
--- a/components/mus/ws/client_connection.h
+++ b/components/mus/ws/client_connection.h
@@ -29,7 +29,7 @@ class ClientConnection {
mojom::WindowTreeClient* client() { return client_; }
- virtual mojom::WindowManagerInternal* GetWindowManagerInternal() = 0;
+ virtual mojom::WindowManager* GetWindowManager() = 0;
virtual void SetIncomingMethodCallProcessingPaused(bool paused) = 0;
@@ -51,14 +51,14 @@ class DefaultClientConnection : public ClientConnection {
~DefaultClientConnection() override;
// ClientConnection:
- mojom::WindowManagerInternal* GetWindowManagerInternal() override;
+ mojom::WindowManager* GetWindowManager() override;
void SetIncomingMethodCallProcessingPaused(bool paused) override;
private:
ConnectionManager* connection_manager_;
mojo::Binding<mojom::WindowTree> binding_;
mojom::WindowTreeClientPtr client_;
- mojom::WindowManagerInternalAssociatedPtr window_manager_internal_;
+ mojom::WindowManagerAssociatedPtr window_manager_internal_;
DISALLOW_COPY_AND_ASSIGN(DefaultClientConnection);
};
« no previous file with comments | « components/mus/ws/access_policy.h ('k') | components/mus/ws/client_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698