| Index: third_party/WebKit/Source/core/events/EventListenerMap.h
|
| diff --git a/third_party/WebKit/Source/core/events/EventListenerMap.h b/third_party/WebKit/Source/core/events/EventListenerMap.h
|
| index ade504d66dc89f294d06fd3af74c4c9166071623..c5f965a9d3b781e20b9cc57eb5c3ce330490e136 100644
|
| --- a/third_party/WebKit/Source/core/events/EventListenerMap.h
|
| +++ b/third_party/WebKit/Source/core/events/EventListenerMap.h
|
| @@ -34,6 +34,7 @@
|
| #define EventListenerMap_h
|
|
|
| #include "core/CoreExport.h"
|
| +#include "core/events/AddEventListenerOptions.h"
|
| #include "core/events/EventListenerOptions.h"
|
| #include "core/events/RegisteredEventListener.h"
|
| #include "wtf/Noncopyable.h"
|
| @@ -57,8 +58,8 @@ public:
|
| bool containsCapturing(const AtomicString& eventType) const;
|
|
|
| void clear();
|
| - bool add(const AtomicString& eventType, EventListener*, const EventListenerOptions&);
|
| - bool remove(const AtomicString& eventType, EventListener*, const EventListenerOptions&, size_t& indexOfRemovedListener);
|
| + bool add(const AtomicString& eventType, EventListener*, const AddEventListenerOptions&);
|
| + bool remove(const AtomicString& eventType, EventListener*, const EventListenerOptions&, size_t& indexOfRemovedListener, RegisteredEventListener* registeredListener);
|
| EventListenerVector* find(const AtomicString& eventType);
|
| Vector<AtomicString> eventTypes() const;
|
|
|
|
|