| 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 430ee4074a020b5fddb58728a14d3b0769b1c4c1..47e4337f50919b5ca9ef858c500fe5c89724e879 100644
|
| --- a/third_party/WebKit/Source/core/events/UIEvent.h
|
| +++ b/third_party/WebKit/Source/core/events/UIEvent.h
|
| @@ -71,7 +71,9 @@ protected:
|
| UIEvent();
|
| // TODO(crbug.com/563542): Remove of this ctor in favor of making platformTimeStamp (and perhaps sourceCapabilities) required in all constructions sites
|
| UIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>, int detail, InputDeviceCapabilities* sourceCapabilities = nullptr);
|
| + UIEvent(const AtomicString& type, bool canBubble, bool cancelable, EventTarget* relatedTarget, PassRefPtrWillBeRawPtr<AbstractView>, int detail, InputDeviceCapabilities* sourceCapabilities = nullptr);
|
| UIEvent(const AtomicString& type, bool canBubble, bool cancelable, double platformTimeStamp, PassRefPtrWillBeRawPtr<AbstractView>, int detail, InputDeviceCapabilities* sourceCapabilities);
|
| + UIEvent(const AtomicString& eventType, bool canBubbleArg, bool cancelableArg, EventTarget* relatedTarget, double platformTimeStamp, PassRefPtrWillBeRawPtr<AbstractView> viewArg, int detailArg, InputDeviceCapabilities* sourceCapabilitiesArg);
|
| UIEvent(const AtomicString&, const UIEventInit&);
|
|
|
| private:
|
|
|