summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/views/mouse_watcher.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/views/mouse_watcher.cc b/ui/views/mouse_watcher.cc
index 4b963d9..ab68b6e 100644
--- a/ui/views/mouse_watcher.cc
+++ b/ui/views/mouse_watcher.cc
@@ -101,10 +101,10 @@ class MouseWatcher::Observer : public MessageLoopForUI::Observer {
virtual void DidProcessEvent(GdkEvent* event) OVERRIDE {
switch (event->type) {
case GDK_MOTION_NOTIFY:
- HandleGlobalMouseMoveEvent(MOUSE_MOVE);
+ HandleGlobalMouseMoveEvent(MouseWatcherHost::MOUSE_MOVE);
break;
case GDK_LEAVE_NOTIFY:
- HandleGlobalMouseMoveEvent(MOUSE_EXIT);
+ HandleGlobalMouseMoveEvent(MouseWatcherHost::MOUSE_EXIT);
break;
default:
break;