summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/bindings/v8/V8EventListener.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/bindings/v8/V8EventListener.cpp')
-rw-r--r--chromium/third_party/WebKit/Source/bindings/v8/V8EventListener.cpp24
1 files changed, 10 insertions, 14 deletions
diff --git a/chromium/third_party/WebKit/Source/bindings/v8/V8EventListener.cpp b/chromium/third_party/WebKit/Source/bindings/v8/V8EventListener.cpp
index 13144b96e9d..fc204607cee 100644
--- a/chromium/third_party/WebKit/Source/bindings/v8/V8EventListener.cpp
+++ b/chromium/third_party/WebKit/Source/bindings/v8/V8EventListener.cpp
@@ -34,19 +34,19 @@
#include "bindings/v8/ScriptController.h"
#include "bindings/v8/V8Binding.h"
#include "core/dom/Document.h"
-#include "core/frame/Frame.h"
+#include "core/frame/LocalFrame.h"
namespace WebCore {
-V8EventListener::V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, v8::Isolate* isolate)
- : V8AbstractEventListener(isAttribute, DOMWrapperWorld::current(), isolate)
+V8EventListener::V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, ScriptState* scriptState)
+ : V8AbstractEventListener(isAttribute, scriptState)
{
setListenerObject(listener);
}
-v8::Local<v8::Function> V8EventListener::getListenerFunction(ExecutionContext* context)
+v8::Local<v8::Function> V8EventListener::getListenerFunction(ExecutionContext*)
{
- v8::Local<v8::Object> listener = getListenerObject(context);
+ v8::Local<v8::Object> listener = getListenerObject(scriptState()->executionContext());
// Has the listener been disposed?
if (listener.IsEmpty())
@@ -67,22 +67,18 @@ v8::Local<v8::Function> V8EventListener::getListenerFunction(ExecutionContext* c
return v8::Local<v8::Function>();
}
-v8::Local<v8::Value> V8EventListener::callListenerFunction(ExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event)
+v8::Local<v8::Value> V8EventListener::callListenerFunction(v8::Handle<v8::Value> jsEvent, Event* event)
{
- v8::Local<v8::Function> handlerFunction = getListenerFunction(context);
- v8::Local<v8::Object> receiver = getReceiverObject(context, event);
+ v8::Local<v8::Function> handlerFunction = getListenerFunction(scriptState()->executionContext());
+ v8::Local<v8::Object> receiver = getReceiverObject(event);
if (handlerFunction.IsEmpty() || receiver.IsEmpty())
return v8::Local<v8::Value>();
- // FIXME: Can |context| be 0 here?
- if (!context)
+ if (!scriptState()->executionContext()->isDocument())
return v8::Local<v8::Value>();
- if (!context->isDocument())
- return v8::Local<v8::Value>();
-
- Frame* frame = toDocument(context)->frame();
+ LocalFrame* frame = toDocument(scriptState()->executionContext())->frame();
if (!frame)
return v8::Local<v8::Value>();