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

Unified Diff: components/mus/public/cpp/lib/window_tree_client_impl.h

Issue 1639563003: Renames WindowManagerConfig to FrameDecorationValues and moves to Display (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments 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
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 73df76070cdd5859280117085e068a820c8bbc51..aba82267958ada91bffc382520da6c34a99094e5 100644
--- a/components/mus/public/cpp/lib/window_tree_client_impl.h
+++ b/components/mus/public/cpp/lib/window_tree_client_impl.h
@@ -14,6 +14,7 @@
#include "base/observer_list.h"
#include "components/mus/common/types.h"
#include "components/mus/public/cpp/window.h"
+#include "components/mus/public/cpp/window_manager_delegate.h"
#include "components/mus/public/cpp/window_tree_connection.h"
#include "components/mus/public/interfaces/window_tree.mojom.h"
#include "mojo/public/cpp/bindings/associated_binding.h"
@@ -35,7 +36,8 @@ enum class ChangeType;
// Manages the connection with the Window Server service.
class WindowTreeClientImpl : public WindowTreeConnection,
public mojom::WindowTreeClient,
- public mojom::WindowManagerInternal {
+ public mojom::WindowManagerInternal,
+ public WindowManagerClient {
public:
WindowTreeClientImpl(WindowTreeDelegate* delegate,
WindowManagerDelegate* window_manager_delegate,
@@ -224,6 +226,10 @@ class WindowTreeClientImpl : public WindowTreeConnection,
mojo::Map<mojo::String, mojo::Array<uint8_t>>
transport_properties) override;
+ // Overriden from WindowManagerClient:
+ void SetFrameDecorationValues(
+ mojom::FrameDecorationValuesPtr values) override;
+
// This is set once and only once when we get OnEmbed(). It gives the unique
// id for this connection.
ConnectionSpecificId connection_id_;

Powered by Google App Engine
This is Rietveld 408576698