Index: third_party/WebKit/Source/core/events/UIEvent.h |
diff --git a/third_party/WebKit/Source/core/events/UIEvent.h b/third_party/WebKit/Source/core/events/UIEvent.h |
index 09fb4007b323b34b17e147a290b13c22831ff246..d79d1c36377213cc376a3e0001ccefde2586970f 100644 |
--- a/third_party/WebKit/Source/core/events/UIEvent.h |
+++ b/third_party/WebKit/Source/core/events/UIEvent.h |
@@ -84,7 +84,11 @@ class CORE_EXPORT UIEvent : public Event { |
AbstractView*, |
int detail, |
InputDeviceCapabilities* source_capabilities); |
- UIEvent(const AtomicString&, const UIEventInit&); |
+ UIEvent(const AtomicString&, |
+ const UIEventInit&, |
+ TimeTicks platform_time_stamp); |
+ UIEvent(const AtomicString& type, const UIEventInit& init) |
+ : UIEvent(type, init, TimeTicks::Now()) {} |
private: |
Member<AbstractView> view_; |