Index: third_party/WebKit/Source/core/events/MouseEvent.h |
diff --git a/third_party/WebKit/Source/core/events/MouseEvent.h b/third_party/WebKit/Source/core/events/MouseEvent.h |
index 562c5629a34221fa87813283a764ac15ed62ba72..34d076b37e989190c9e989a5dd455120a149abf9 100644 |
--- a/third_party/WebKit/Source/core/events/MouseEvent.h |
+++ b/third_party/WebKit/Source/core/events/MouseEvent.h |
@@ -210,7 +210,11 @@ class CORE_EXPORT MouseEvent : public UIEventWithKeyState { |
SyntheticEventType, |
const String& region); |
- MouseEvent(const AtomicString& type, const MouseEventInit&); |
+ MouseEvent(const AtomicString& type, |
+ const MouseEventInit&, |
+ TimeTicks platform_time_stamp); |
+ MouseEvent(const AtomicString& type, const MouseEventInit& init) |
+ : MouseEvent(type, init, TimeTicks::Now()) {} |
MouseEvent(); |