Index: Source/bindings/core/v8/V8LazyEventListener.h |
diff --git a/Source/bindings/core/v8/V8LazyEventListener.h b/Source/bindings/core/v8/V8LazyEventListener.h |
index ff9d9ae6882045b8e5360de5d29b32d9c3747ea0..03c37ecff2e847c4966332c0a6e3ec3fb182203c 100644 |
--- a/Source/bindings/core/v8/V8LazyEventListener.h |
+++ b/Source/bindings/core/v8/V8LazyEventListener.h |
@@ -47,14 +47,14 @@ class V8LazyEventListener final : public V8AbstractEventListener { |
public: |
static PassRefPtr<V8LazyEventListener> create(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String& sourceURL, const TextPosition& position, Node* node, v8::Isolate* isolate) |
{ |
- return adoptRef(new V8LazyEventListener(functionName, eventParameterName, code, sourceURL, position, node, isolate)); |
+ return adoptRef(new V8LazyEventListener(isolate, functionName, eventParameterName, code, sourceURL, position, node)); |
} |
protected: |
virtual void prepareListenerObject(ExecutionContext*) override; |
private: |
- V8LazyEventListener(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String sourceURL, const TextPosition&, Node*, v8::Isolate*); |
+ 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; |