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

Unified Diff: ui/aura/test/mus/window_tree_client_private.cc

Issue 2685883003: chromeos: converts observed pointer events to DIPs (Closed)
Patch Set: merge Created 3 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
« no previous file with comments | « ui/aura/mus/window_tree_client_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/test/mus/window_tree_client_private.cc
diff --git a/ui/aura/test/mus/window_tree_client_private.cc b/ui/aura/test/mus/window_tree_client_private.cc
index 92c421268e579545a528dd72f864574bf3a46966..c1255bf4bdf8ac4d260ca185e260fbbd2292f62a 100644
--- a/ui/aura/test/mus/window_tree_client_private.cc
+++ b/ui/aura/test/mus/window_tree_client_private.cc
@@ -56,9 +56,10 @@ void WindowTreeClientPrivate::CallOnWindowInputEvent(
std::unique_ptr<ui::Event> event) {
const uint32_t event_id = 0u;
const uint32_t observer_id = 0u;
- tree_client_impl_->OnWindowInputEvent(event_id,
- WindowPortMus::Get(window)->server_id(),
- std::move(event), observer_id);
+ const int64_t display_id = 0;
+ tree_client_impl_->OnWindowInputEvent(
+ event_id, WindowPortMus::Get(window)->server_id(), display_id,
+ std::move(event), observer_id);
}
void WindowTreeClientPrivate::CallOnCaptureChanged(Window* new_capture,
« no previous file with comments | « ui/aura/mus/window_tree_client_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698