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

Unified Diff: ash/aura/wm_shell_aura.cc

Issue 2235363003: Wires up WmShellMus::Add/RemovePointerWatcher (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pointer_watcher_capture
Patch Set: cleanup Created 4 years, 4 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: ash/aura/wm_shell_aura.cc
diff --git a/ash/aura/wm_shell_aura.cc b/ash/aura/wm_shell_aura.cc
index 004253bfe2a3e42f26d0151d07ebb73afe3d91cc..e9d077bccc0bc94f97a2dbef8f69c822e1b70a60 100644
--- a/ash/aura/wm_shell_aura.cc
+++ b/ash/aura/wm_shell_aura.cc
@@ -234,8 +234,9 @@ void WmShellAura::RemoveDisplayObserver(WmDisplayObserver* observer) {
display_observers_.RemoveObserver(observer);
}
-void WmShellAura::AddPointerWatcher(views::PointerWatcher* watcher) {
- Shell::GetInstance()->AddPointerWatcher(watcher);
+void WmShellAura::AddPointerWatcher(views::PointerWatcher* watcher,
+ bool wants_moves) {
+ Shell::GetInstance()->AddPointerWatcher(watcher, wants_moves);
James Cook 2016/08/12 16:08:53 not for this CL: at some point I think we should g
sky 2016/08/12 17:59:37 If you have the time that would be great.
}
void WmShellAura::RemovePointerWatcher(views::PointerWatcher* watcher) {

Powered by Google App Engine
This is Rietveld 408576698