Index: ui/views/mouse_watcher.cc |
diff --git a/ui/views/mouse_watcher.cc b/ui/views/mouse_watcher.cc |
index 54db66054730e8f2b38b766a75f29e44cf2fd996..c3200847a245b40654e55211241a6200150141c9 100644 |
--- a/ui/views/mouse_watcher.cc |
+++ b/ui/views/mouse_watcher.cc |
@@ -86,7 +86,9 @@ class MouseWatcher::Observer : public MessageLoopForUI::Observer { |
// Called from the message loop observer when a mouse movement has occurred. |
void HandleGlobalMouseMoveEvent(MouseWatcherHost::MouseEventType event_type) { |
bool contained = host()->Contains( |
- gfx::Screen::GetCursorScreenPoint(), event_type); |
+ // TODO(scottmg): Native is wrong http://crbug.com/133312 |
+ gfx::Screen::GetNativeScreen()->GetCursorScreenPoint(), |
+ event_type); |
if (!contained) { |
// Mouse moved outside the host's zone, start a timer to notify the |
// listener. |