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

Unified Diff: ui/wm/core/cursor_manager.cc

Issue 240333007: wip: Second crack at implementing the touch exploration mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't extend DisplayController::Observer - TouchExplorationController is owned by the root window (… Created 6 years, 8 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: ui/wm/core/cursor_manager.cc
diff --git a/ui/wm/core/cursor_manager.cc b/ui/wm/core/cursor_manager.cc
index e9f988566a3e68ec8c754cffc9ed20a3ed914db1..09cbb1d8888aab90912f5f36a21090de00efd6db 100644
--- a/ui/wm/core/cursor_manager.cc
+++ b/ui/wm/core/cursor_manager.cc
@@ -43,6 +43,7 @@ class CursorState {
bool mouse_events_enabled() const { return mouse_events_enabled_; }
void SetMouseEventsEnabled(bool enabled) {
+ LOG(ERROR) << "CursorState::SetMouseEventsEnabled, enabled=" << enabled;
Daniel Erat 2014/04/18 00:44:08 delete
if (mouse_events_enabled_ == enabled)
return;
mouse_events_enabled_ = enabled;

Powered by Google App Engine
This is Rietveld 408576698