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

Unified Diff: ash/shell.cc

Issue 2231533004: Pointer watcher modifications to support laser pointer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Initial patch. 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/shell.cc
diff --git a/ash/shell.cc b/ash/shell.cc
index 6f64011d9d6fcd1587fa62c87a3f506db1de1a04..da4af1222b192c61213831a5bfd27122d4ed088d 100644
--- a/ash/shell.cc
+++ b/ash/shell.cc
@@ -419,8 +419,9 @@ void Shell::ShutdownShelf() {
}
}
-void Shell::AddPointerWatcher(views::PointerWatcher* watcher) {
- pointer_watcher_delegate_->AddPointerWatcher(watcher);
+void Shell::AddPointerWatcher(views::PointerWatcher* watcher,
+ bool wants_moves) {
+ pointer_watcher_delegate_->AddPointerWatcher(watcher, wants_moves);
}
void Shell::RemovePointerWatcher(views::PointerWatcher* watcher) {

Powered by Google App Engine
This is Rietveld 408576698