| Index: third_party/WebKit/Source/core/events/EventListener.h
|
| diff --git a/third_party/WebKit/Source/core/events/EventListener.h b/third_party/WebKit/Source/core/events/EventListener.h
|
| index 19d1027d2045b8e8840178e37db95fcb55de9e81..d42f559f43d89b13891b896768f3681b3aa14a71 100644
|
| --- a/third_party/WebKit/Source/core/events/EventListener.h
|
| +++ b/third_party/WebKit/Source/core/events/EventListener.h
|
| @@ -45,7 +45,9 @@ class CORE_EXPORT EventListener
|
| virtual bool operator==(const EventListener&) const = 0;
|
| virtual void handleEvent(ExecutionContext*, Event*) = 0;
|
| virtual const String& code() const { return emptyString(); }
|
| - virtual bool belongsToTheCurrentWorld() const { return false; }
|
| + virtual bool belongsToTheCurrentWorld(ExecutionContext*) const {
|
| + return false;
|
| + }
|
|
|
| bool isAttribute() const { return virtualisAttribute(); }
|
| ListenerType type() const { return m_type; }
|
|
|