| Index: Source/bindings/v8/V8EventListener.h
|
| diff --git a/Source/bindings/v8/V8EventListener.h b/Source/bindings/v8/V8EventListener.h
|
| index 772525e9e3ff5c4f0681c94c7b4d8a0cf4c5eff1..275a1fa88c4be65661f04f223b645dc5975e95ac 100644
|
| --- a/Source/bindings/v8/V8EventListener.h
|
| +++ b/Source/bindings/v8/V8EventListener.h
|
| @@ -44,13 +44,13 @@ namespace WebCore {
|
| // that can handle the event.
|
| class V8EventListener : public V8AbstractEventListener {
|
| public:
|
| - static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute, v8::Isolate* isolate)
|
| + static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute, ScriptState* scriptState)
|
| {
|
| - return adoptRef(new V8EventListener(listener, isAttribute, isolate));
|
| + return adoptRef(new V8EventListener(listener, isAttribute, scriptState));
|
| }
|
|
|
| protected:
|
| - V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, v8::Isolate*);
|
| + V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, ScriptState*);
|
|
|
| v8::Local<v8::Function> getListenerFunction(ExecutionContext*);
|
|
|
|
|