| 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 0eefe39f067a25fb8e03dfd5a5bca7ef0d2e7bcd..d36497a87af56f7481351d61bcde5477d034a6a6 100644
|
| --- a/content/public/test/render_view_test.cc
|
| +++ b/content/public/test/render_view_test.cc
|
| @@ -385,7 +385,7 @@ void RenderViewTest::SendWebKeyboardEvent(
|
| const blink::WebKeyboardEvent& key_event) {
|
| RenderViewImpl* impl = static_cast<RenderViewImpl*>(view_);
|
| impl->OnMessageReceived(InputMsg_HandleInputEvent(
|
| - 0, &key_event, ui::LatencyInfo(),
|
| + 0, &key_event, std::vector<const WebInputEvent*>(), ui::LatencyInfo(),
|
| InputEventDispatchType::DISPATCH_TYPE_BLOCKING));
|
| }
|
|
|
| @@ -393,7 +393,7 @@ void RenderViewTest::SendWebMouseEvent(
|
| const blink::WebMouseEvent& mouse_event) {
|
| RenderViewImpl* impl = static_cast<RenderViewImpl*>(view_);
|
| impl->OnMessageReceived(InputMsg_HandleInputEvent(
|
| - 0, &mouse_event, ui::LatencyInfo(),
|
| + 0, &mouse_event, std::vector<const WebInputEvent*>(), ui::LatencyInfo(),
|
| InputEventDispatchType::DISPATCH_TYPE_BLOCKING));
|
| }
|
|
|
| @@ -462,11 +462,11 @@ 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(),
|
| + 0, &mouse_event, std::vector<const WebInputEvent*>(), ui::LatencyInfo(),
|
| InputEventDispatchType::DISPATCH_TYPE_BLOCKING));
|
| mouse_event.setType(WebInputEvent::MouseUp);
|
| impl->OnMessageReceived(InputMsg_HandleInputEvent(
|
| - 0, &mouse_event, ui::LatencyInfo(),
|
| + 0, &mouse_event, std::vector<const WebInputEvent*>(), ui::LatencyInfo(),
|
| InputEventDispatchType::DISPATCH_TYPE_BLOCKING));
|
| }
|
|
|
| @@ -489,11 +489,11 @@ 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(),
|
| + 0, &mouse_event, std::vector<const WebInputEvent*>(), ui::LatencyInfo(),
|
| InputEventDispatchType::DISPATCH_TYPE_BLOCKING));
|
| mouse_event.setType(WebInputEvent::MouseUp);
|
| impl->OnMessageReceived(InputMsg_HandleInputEvent(
|
| - 0, &mouse_event, ui::LatencyInfo(),
|
| + 0, &mouse_event, std::vector<const WebInputEvent*>(), ui::LatencyInfo(),
|
| InputEventDispatchType::DISPATCH_TYPE_BLOCKING));
|
| }
|
|
|
| @@ -509,7 +509,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(),
|
| + 0, &gesture_event, std::vector<const WebInputEvent*>(), ui::LatencyInfo(),
|
| InputEventDispatchType::DISPATCH_TYPE_BLOCKING));
|
| impl->FocusChangeComplete();
|
| }
|
|
|