Index: Source/bindings/v8/V8EventListener.h |
diff --git a/Source/bindings/v8/V8EventListener.h b/Source/bindings/v8/V8EventListener.h |
index 1a661f285ceee53b93d8f28ff248942064d235f0..38ca53ebfecc78f0f2be78c74784935c624a515b 100644 |
--- a/Source/bindings/v8/V8EventListener.h |
+++ b/Source/bindings/v8/V8EventListener.h |
@@ -45,13 +45,13 @@ namespace WebCore { |
// that can handle the event. |
class V8EventListener : public V8AbstractEventListener { |
public: |
- static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute) |
+ static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute, v8::Isolate* isolate) |
{ |
- return adoptRef(new V8EventListener(listener, isAttribute)); |
+ return adoptRef(new V8EventListener(listener, isAttribute, isolate)); |
} |
protected: |
- V8EventListener(v8::Local<v8::Object> listener, bool isAttribute); |
+ V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, v8::Isolate*); |
v8::Local<v8::Function> getListenerFunction(ScriptExecutionContext*); |