| Index: Source/bindings/core/v8/V8LazyEventListener.h
|
| diff --git a/Source/bindings/core/v8/V8LazyEventListener.h b/Source/bindings/core/v8/V8LazyEventListener.h
|
| index 03c37ecff2e847c4966332c0a6e3ec3fb182203c..32fc97a93cece1b927da56e07ab28c967587104c 100644
|
| --- a/Source/bindings/core/v8/V8LazyEventListener.h
|
| +++ b/Source/bindings/core/v8/V8LazyEventListener.h
|
| @@ -51,18 +51,18 @@ public:
|
| }
|
|
|
| protected:
|
| - virtual void prepareListenerObject(ExecutionContext*) override;
|
| + void prepareListenerObject(ExecutionContext*) override;
|
|
|
| private:
|
| V8LazyEventListener(v8::Isolate*, const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String sourceURL, const TextPosition&, Node*);
|
|
|
| - virtual v8::Local<v8::Value> callListenerFunction(ScriptState*, v8::Local<v8::Value>, Event*) override;
|
| + v8::Local<v8::Value> callListenerFunction(ScriptState*, v8::Local<v8::Value>, Event*) override;
|
|
|
| // Needs to return true for all event handlers implemented in JavaScript so that
|
| // the SVG code does not add the event handler in both
|
| // SVGUseElement::buildShadowTree and again in
|
| // SVGUseElement::transferEventListenersToShadowTree
|
| - virtual bool wasCreatedFromMarkup() const override { return true; }
|
| + bool wasCreatedFromMarkup() const override { return true; }
|
|
|
| AtomicString m_functionName;
|
| AtomicString m_eventParameterName;
|
|
|