Index: ui/base/win/events_win.cc |
diff --git a/ui/base/win/events_win.cc b/ui/base/win/events_win.cc |
index 3ea2f75eca868190bd6e1da3b3a7c16626292e8d..c7f275f19a1b9807575507c3a5339d2b3590e72a 100644 |
--- a/ui/base/win/events_win.cc |
+++ b/ui/base/win/events_win.cc |
@@ -215,6 +215,13 @@ gfx::Point EventLocationFromNative(const base::NativeEvent& native_event) { |
return gfx::Point(native_point); |
} |
+gfx::Point EventSystemLocationFromNative( |
+ const base::NativeEvent& native_event) { |
+ // TODO(ben): Needs to always return screen position here. Returning normal |
+ // origin for now since that's obviously wrong. |
+ return gfx::Point(0, 0); |
+} |
+ |
KeyboardCode KeyboardCodeFromNative(const base::NativeEvent& native_event) { |
return KeyboardCodeForWindowsKeyCode(native_event.wParam); |
} |