Index: chrome/browser/android/vr_shell/vr_shell_gl.cc |
diff --git a/chrome/browser/android/vr_shell/vr_shell_gl.cc b/chrome/browser/android/vr_shell/vr_shell_gl.cc |
index c3b906768d2fd7e09fea01670323b19e788e14ad..224507f7adc5d7a41e4fb7b084ab9c9155688f40 100644 |
--- a/chrome/browser/android/vr_shell/vr_shell_gl.cc |
+++ b/chrome/browser/android/vr_shell/vr_shell_gl.cc |
@@ -117,8 +117,8 @@ std::unique_ptr<blink::WebMouseEvent> MakeMouseEvent(WebInputEvent::Type type, |
std::unique_ptr<blink::WebMouseEvent> mouse_event(new blink::WebMouseEvent( |
type, blink::WebInputEvent::NoModifiers, timestamp)); |
mouse_event->pointerType = blink::WebPointerProperties::PointerType::Mouse; |
- mouse_event->x = x; |
- mouse_event->y = y; |
+ mouse_event->position.x = x; |
+ mouse_event->position.y = y; |
mouse_event->clickCount = 1; |
return mouse_event; |