Index: third_party/WebKit/Source/core/events/TouchEvent.cpp |
diff --git a/third_party/WebKit/Source/core/events/TouchEvent.cpp b/third_party/WebKit/Source/core/events/TouchEvent.cpp |
index be31a8b76dbd93c371e65e897adbc6a92cb98192..b5f8b51b85325773baeb19952967156b252fead1 100644 |
--- a/third_party/WebKit/Source/core/events/TouchEvent.cpp |
+++ b/third_party/WebKit/Source/core/events/TouchEvent.cpp |
@@ -45,7 +45,7 @@ TouchEvent::TouchEvent(TouchList* touches, TouchList* targetTouches, |
TouchList* changedTouches, const AtomicString& type, |
PassRefPtrWillBeRawPtr<AbstractView> view, |
bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable, bool causesScrollingIfUncanceled, |
- double uiCreateTime) |
+ double timestamp) |
// Pass a sourceCapabilities including the ability to fire touchevents when creating this touchevent, which is always created from input device capabilities from EventHandler. |
: UIEventWithKeyState(type, true, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKey, InputDeviceCapabilities::firesTouchEventsSourceCapabilities()) |
, m_touches(touches) |
@@ -53,7 +53,7 @@ TouchEvent::TouchEvent(TouchList* touches, TouchList* targetTouches, |
, m_changedTouches(changedTouches) |
, m_causesScrollingIfUncanceled(causesScrollingIfUncanceled) |
{ |
- setUICreateTime(uiCreateTime); |
+ setPlatformTimeStamp(timestamp); |
} |
TouchEvent::~TouchEvent() |