| Index: content/public/test/render_view_test.cc
|
| diff --git a/content/public/test/render_view_test.cc b/content/public/test/render_view_test.cc
|
| index cd56c017322de3a2bbaf779319f482b99a81d004..ad1f76d770efd321460c619423fa3943c5c7e80d 100644
|
| --- a/content/public/test/render_view_test.cc
|
| +++ b/content/public/test/render_view_test.cc
|
| @@ -442,14 +442,14 @@ void RenderViewTest::SendWebKeyboardEvent(
|
| const blink::WebKeyboardEvent& key_event) {
|
| RenderViewImpl* impl = static_cast<RenderViewImpl*>(view_);
|
| impl->OnMessageReceived(
|
| - InputMsg_HandleInputEvent(0, &key_event, ui::LatencyInfo()));
|
| + InputMsg_HandleInputEvent(0, &key_event, ui::LatencyInfo(), false));
|
| }
|
|
|
| void RenderViewTest::SendWebMouseEvent(
|
| const blink::WebMouseEvent& mouse_event) {
|
| RenderViewImpl* impl = static_cast<RenderViewImpl*>(view_);
|
| impl->OnMessageReceived(
|
| - InputMsg_HandleInputEvent(0, &mouse_event, ui::LatencyInfo()));
|
| + InputMsg_HandleInputEvent(0, &mouse_event, ui::LatencyInfo(), false));
|
| }
|
|
|
| const char* const kGetCoordinatesScript =
|
| @@ -516,10 +516,10 @@ void RenderViewTest::SimulatePointClick(const gfx::Point& point) {
|
| mouse_event.clickCount = 1;
|
| RenderViewImpl* impl = static_cast<RenderViewImpl*>(view_);
|
| impl->OnMessageReceived(
|
| - InputMsg_HandleInputEvent(0, &mouse_event, ui::LatencyInfo()));
|
| + InputMsg_HandleInputEvent(0, &mouse_event, ui::LatencyInfo(), false));
|
| mouse_event.type = WebInputEvent::MouseUp;
|
| impl->OnMessageReceived(
|
| - InputMsg_HandleInputEvent(0, &mouse_event, ui::LatencyInfo()));
|
| + InputMsg_HandleInputEvent(0, &mouse_event, ui::LatencyInfo(), false));
|
| }
|
|
|
|
|
| @@ -540,10 +540,10 @@ void RenderViewTest::SimulatePointRightClick(const gfx::Point& point) {
|
| mouse_event.clickCount = 1;
|
| RenderViewImpl* impl = static_cast<RenderViewImpl*>(view_);
|
| impl->OnMessageReceived(
|
| - InputMsg_HandleInputEvent(0, &mouse_event, ui::LatencyInfo()));
|
| + InputMsg_HandleInputEvent(0, &mouse_event, ui::LatencyInfo(), false));
|
| mouse_event.type = WebInputEvent::MouseUp;
|
| impl->OnMessageReceived(
|
| - InputMsg_HandleInputEvent(0, &mouse_event, ui::LatencyInfo()));
|
| + InputMsg_HandleInputEvent(0, &mouse_event, ui::LatencyInfo(), false));
|
| }
|
|
|
| void RenderViewTest::SimulateRectTap(const gfx::Rect& rect) {
|
| @@ -557,7 +557,7 @@ void RenderViewTest::SimulateRectTap(const gfx::Rect& rect) {
|
| gesture_event.sourceDevice = blink::WebGestureDeviceTouchpad;
|
| RenderViewImpl* impl = static_cast<RenderViewImpl*>(view_);
|
| impl->OnMessageReceived(
|
| - InputMsg_HandleInputEvent(0, &gesture_event, ui::LatencyInfo()));
|
| + InputMsg_HandleInputEvent(0, &gesture_event, ui::LatencyInfo(), false));
|
| impl->FocusChangeComplete();
|
| }
|
|
|
|
|