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

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

Issue 1677513002: mus Window Server: implement event capture (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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.cc
diff --git a/components/mus/public/cpp/lib/window_tree_client_impl.cc b/components/mus/public/cpp/lib/window_tree_client_impl.cc
index afda3498ac25909c0d4605cd73219e8b61865561..b30357abd04a83da1297421f10d0c076ddfa40a0 100644
--- a/components/mus/public/cpp/lib/window_tree_client_impl.cc
+++ b/components/mus/public/cpp/lib/window_tree_client_impl.cc
@@ -240,6 +240,14 @@ void WindowTreeClientImpl::SetBounds(Window* window,
tree_->SetWindowBounds(change_id, window->id(), mojo::Rect::From(bounds));
}
+void WindowTreeClientImpl::SetCapture(Window* window) {
+ NOTIMPLEMENTED();
+}
+
+void WindowTreeClientImpl::ReleaseCapture(Window* window) {
+ NOTIMPLEMENTED();
+}
+
void WindowTreeClientImpl::SetClientArea(
Id window_id,
const gfx::Insets& client_area,
@@ -551,6 +559,10 @@ void WindowTreeClientImpl::OnUnembed(Id window_id) {
WindowPrivate(window).LocalDestroy();
}
+void WindowTreeClientImpl::OnLostCapture(Id window_id) {
+ NOTIMPLEMENTED();
+}
+
void WindowTreeClientImpl::OnTopLevelCreated(uint32_t change_id,
mojom::WindowDataPtr data) {
// The server ack'd the top level window we created and supplied the state
« no previous file with comments | « components/mus/public/cpp/lib/window_tree_client_impl.h ('k') | components/mus/public/cpp/tests/test_window_tree.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698