| Index: third_party/WebKit/Source/core/events/UIEventWithKeyState.h
|
| diff --git a/third_party/WebKit/Source/core/events/UIEventWithKeyState.h b/third_party/WebKit/Source/core/events/UIEventWithKeyState.h
|
| index 3fa0e71caa612d3299cf7f80e121b0b9e072e0bd..68914402691a0b2d9b519a6d0d8080aa200c4d30 100644
|
| --- a/third_party/WebKit/Source/core/events/UIEventWithKeyState.h
|
| +++ b/third_party/WebKit/Source/core/events/UIEventWithKeyState.h
|
| @@ -75,7 +75,11 @@ class CORE_EXPORT UIEventWithKeyState : public UIEvent {
|
| TimeTicks platform_time_stamp,
|
| InputDeviceCapabilities* source_capabilities = nullptr);
|
| UIEventWithKeyState(const AtomicString& type,
|
| - const EventModifierInit& initializer);
|
| + const EventModifierInit& initializer,
|
| + TimeTicks platform_time_stamp);
|
| + UIEventWithKeyState(const AtomicString& type,
|
| + const EventModifierInit& initializer)
|
| + : UIEventWithKeyState(type, initializer, TimeTicks::Now()) {}
|
| void InitModifiers(bool ctrl_key,
|
| bool alt_key,
|
| bool shift_key,
|
|
|