| Index: third_party/WebKit/Source/core/input/EventHandlerTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/input/EventHandlerTest.cpp b/third_party/WebKit/Source/core/input/EventHandlerTest.cpp
|
| index 19b58c2077427c5d2344963b553f22223c5f278b..87cd79ddff3362233bd685e5df0a771135108a62 100644
|
| --- a/third_party/WebKit/Source/core/input/EventHandlerTest.cpp
|
| +++ b/third_party/WebKit/Source/core/input/EventHandlerTest.cpp
|
| @@ -86,7 +86,8 @@ TEST_F(EventHandlerTest, dragSelectionAfterScroll) {
|
| IntPoint(100, 50), IntPoint(200, 250), WebPointerProperties::Button::Left,
|
| PlatformEvent::MouseMoved, 1, PlatformEvent::Modifiers::LeftButtonDown,
|
| WTF::monotonicallyIncreasingTime());
|
| - document().frame()->eventHandler().handleMouseMoveEvent(mouseMoveEvent);
|
| + document().frame()->eventHandler().handleMouseMoveEvent(
|
| + mouseMoveEvent, Vector<PlatformMouseEvent>());
|
|
|
| page().autoscrollController().animate(WTF::monotonicallyIncreasingTime());
|
| page().animator().serviceScriptedAnimations(
|
| @@ -190,7 +191,8 @@ TEST_F(EventHandlerTest, draggedInlinePositionTest) {
|
| PlatformEvent::MouseMoved, 1,
|
| PlatformEvent::Modifiers::LeftButtonDown,
|
| WTF::monotonicallyIncreasingTime());
|
| - document().frame()->eventHandler().handleMouseMoveEvent(mouseMoveEvent);
|
| + document().frame()->eventHandler().handleMouseMoveEvent(
|
| + mouseMoveEvent, Vector<PlatformMouseEvent>());
|
|
|
| EXPECT_EQ(
|
| IntPoint(12, 29),
|
| @@ -223,7 +225,8 @@ TEST_F(EventHandlerTest, draggedSVGImagePositionTest) {
|
| PlatformEvent::MouseMoved, 1,
|
| PlatformEvent::Modifiers::LeftButtonDown,
|
| WTF::monotonicallyIncreasingTime());
|
| - document().frame()->eventHandler().handleMouseMoveEvent(mouseMoveEvent);
|
| + document().frame()->eventHandler().handleMouseMoveEvent(
|
| + mouseMoveEvent, Vector<PlatformMouseEvent>());
|
|
|
| EXPECT_EQ(
|
| IntPoint(45, 44),
|
|
|