Index: third_party/WebKit/Source/core/events/PointerEventFactoryTest.cpp |
diff --git a/third_party/WebKit/Source/core/events/PointerEventFactoryTest.cpp b/third_party/WebKit/Source/core/events/PointerEventFactoryTest.cpp |
index cba3d02a08f7f82c329d1ac8a1e91038d7291b51..1950275b5d7b7d291367fffd5e0754a588110f21 100644 |
--- a/third_party/WebKit/Source/core/events/PointerEventFactoryTest.cpp |
+++ b/third_party/WebKit/Source/core/events/PointerEventFactoryTest.cpp |
@@ -107,10 +107,10 @@ PointerEvent* PointerEventFactoryTest::createAndCheckTouchEvent( |
bool isPrimary, |
PlatformTouchPoint::TouchState state) { |
PointerEvent* pointerEvent = m_pointerEventFactory.create( |
- EventTypeNames::pointerdown, |
PointerEventFactoryTest::PlatformTouchPointBuilder(pointerType, rawId, |
state), |
- PlatformEvent::NoModifiers, FloatSize(), FloatPoint(), nullptr); |
+ Vector<PlatformTouchPoint>(), PlatformEvent::NoModifiers, nullptr, |
+ nullptr); |
EXPECT_EQ(uniqueId, pointerEvent->pointerId()); |
EXPECT_EQ(isPrimary, pointerEvent->isPrimary()); |
return pointerEvent; |
@@ -124,7 +124,8 @@ PointerEvent* PointerEventFactoryTest::createAndCheckMouseEvent( |
PlatformEvent::Modifiers modifiers) { |
PointerEvent* pointerEvent = m_pointerEventFactory.create( |
EventTypeNames::mousedown, |
- PlatformMouseEventBuilder(pointerType, rawId, modifiers), nullptr); |
+ PlatformMouseEventBuilder(pointerType, rawId, modifiers), |
+ Vector<PlatformMouseEvent>(), nullptr); |
EXPECT_EQ(uniqueId, pointerEvent->pointerId()); |
EXPECT_EQ(isPrimary, pointerEvent->isPrimary()); |
return pointerEvent; |