| Index: chrome/browser/android/vr_shell/vr_input_manager.cc
|
| diff --git a/chrome/browser/android/vr_shell/vr_input_manager.cc b/chrome/browser/android/vr_shell/vr_input_manager.cc
|
| index 92f5beef2fc1d1e5e3001c0dded713d538a686c8..62b3aafb9d67392eafa745edd87d523449f908e6 100644
|
| --- a/chrome/browser/android/vr_shell/vr_input_manager.cc
|
| +++ b/chrome/browser/android/vr_shell/vr_input_manager.cc
|
| @@ -18,14 +18,14 @@ namespace vr_shell {
|
|
|
| namespace {
|
| WebGestureEvent MakeGestureEvent(WebInputEvent::Type type,
|
| - int64_t time_ms,
|
| + double time,
|
| float x,
|
| float y) {
|
| WebGestureEvent result;
|
| result.type = type;
|
| result.x = x;
|
| result.y = y;
|
| - result.timeStampSeconds = time_ms / 1000.0;
|
| + result.timeStampSeconds = time;
|
| result.sourceDevice = blink::WebGestureDeviceTouchpad;
|
| return result;
|
| }
|
|
|