| Index: third_party/WebKit/Source/core/events/EventTarget.h
|
| diff --git a/third_party/WebKit/Source/core/events/EventTarget.h b/third_party/WebKit/Source/core/events/EventTarget.h
|
| index 6e9612012efeb7bed821e6f9239bf677e5793031..27cfd723a536aa146351cc51ac4ccc12b9d7ea27 100644
|
| --- a/third_party/WebKit/Source/core/events/EventTarget.h
|
| +++ b/third_party/WebKit/Source/core/events/EventTarget.h
|
| @@ -114,8 +114,8 @@ public:
|
| virtual MessagePort* toMessagePort();
|
|
|
| bool addEventListener(const AtomicString& eventType, EventListener*, bool useCapture = false);
|
| - bool addEventListener(const AtomicString& eventType, EventListener*, const EventListenerOptionsOrBoolean&);
|
| - bool addEventListener(const AtomicString& eventType, EventListener*, EventListenerOptions&);
|
| + bool addEventListener(const AtomicString& eventType, EventListener*, const AddEventListenerOptionsOrBoolean&);
|
| + bool addEventListener(const AtomicString& eventType, EventListener*, AddEventListenerOptions&);
|
|
|
| bool removeEventListener(const AtomicString& eventType, const EventListener*, bool useCapture = false);
|
| bool removeEventListener(const AtomicString& eventType, const EventListener*, const EventListenerOptionsOrBoolean&);
|
| @@ -151,7 +151,7 @@ public:
|
| protected:
|
| EventTarget();
|
|
|
| - virtual bool addEventListenerInternal(const AtomicString& eventType, EventListener*, const EventListenerOptions&);
|
| + virtual bool addEventListenerInternal(const AtomicString& eventType, EventListener*, const AddEventListenerOptions&);
|
| virtual bool removeEventListenerInternal(const AtomicString& eventType, const EventListener*, const EventListenerOptions&);
|
|
|
| // Called when an event listener has been successfully added.
|
|
|