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

Unified Diff: components/mus/ws/display_binding.cc

Issue 2068093002: mus: Allow embedder to intercept events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tot-merge Created 4 years, 6 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/public/interfaces/window_tree_constants.mojom ('k') | components/mus/ws/test_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/mus/ws/display_binding.cc
diff --git a/components/mus/ws/display_binding.cc b/components/mus/ws/display_binding.cc
index de3df94be36724454a72b95654b6206e09b7d7ed..519bef4a2f83ef2217551d4752a005251f3e2e8d 100644
--- a/components/mus/ws/display_binding.cc
+++ b/components/mus/ws/display_binding.cc
@@ -27,8 +27,9 @@ DisplayBindingImpl::DisplayBindingImpl(mojom::WindowTreeHostRequest request,
DisplayBindingImpl::~DisplayBindingImpl() {}
WindowTree* DisplayBindingImpl::CreateWindowTree(ServerWindow* root) {
+ const uint32_t embed_flags = 0;
WindowTree* tree = window_server_->EmbedAtWindow(
- root, user_id_, std::move(client_),
+ root, user_id_, std::move(client_), embed_flags,
base::WrapUnique(new WindowManagerAccessPolicy));
tree->ConfigureWindowManager();
return tree;
« no previous file with comments | « components/mus/public/interfaces/window_tree_constants.mojom ('k') | components/mus/ws/test_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698