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

Unified Diff: components/mus/public/cpp/lib/window_tree_client_impl.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/mus_app.cc ('k') | components/mus/public/cpp/lib/window_tree_client_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/mus/public/cpp/lib/window_tree_client_impl.h
diff --git a/components/mus/public/cpp/lib/window_tree_client_impl.h b/components/mus/public/cpp/lib/window_tree_client_impl.h
index aba82267958ada91bffc382520da6c34a99094e5..4d86feff6f10c506369fb17f68fda5da74a3bbd7 100644
--- a/components/mus/public/cpp/lib/window_tree_client_impl.h
+++ b/components/mus/public/cpp/lib/window_tree_client_impl.h
@@ -36,7 +36,7 @@ enum class ChangeType;
// Manages the connection with the Window Server service.
class WindowTreeClientImpl : public WindowTreeConnection,
public mojom::WindowTreeClient,
- public mojom::WindowManagerInternal,
+ public mojom::WindowManager,
public WindowManagerClient {
public:
WindowTreeClientImpl(WindowTreeDelegate* delegate,
@@ -210,11 +210,10 @@ class WindowTreeClientImpl : public WindowTreeConnection,
mojom::Cursor cursor) override;
void OnChangeCompleted(uint32_t change_id, bool success) override;
void RequestClose(uint32_t window_id) override;
- void GetWindowManagerInternal(
- mojo::AssociatedInterfaceRequest<WindowManagerInternal> internal)
- override;
+ void GetWindowManager(
+ mojo::AssociatedInterfaceRequest<WindowManager> internal) override;
- // Overridden from WindowManagerInternal:
+ // Overridden from WindowManager:
void WmSetBounds(uint32_t change_id,
Id window_id,
mojo::RectPtr transit_bounds) override;
@@ -265,10 +264,9 @@ class WindowTreeClientImpl : public WindowTreeConnection,
base::ObserverList<WindowTreeConnectionObserver> observers_;
- scoped_ptr<mojo::AssociatedBinding<mojom::WindowManagerInternal>>
+ scoped_ptr<mojo::AssociatedBinding<mojom::WindowManager>>
window_manager_internal_;
- mojom::WindowManagerInternalClientAssociatedPtr
- window_manager_internal_client_;
+ mojom::WindowManagerClientAssociatedPtr window_manager_internal_client_;
MOJO_DISALLOW_COPY_AND_ASSIGN(WindowTreeClientImpl);
};
« no previous file with comments | « components/mus/mus_app.cc ('k') | components/mus/public/cpp/lib/window_tree_client_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698