Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(298)

Unified Diff: Source/bindings/core/v8/ScriptEventListener.h

Issue 1268353005: [DevTools] Support JQuery event listeners (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/bindings/core/v8/ScriptEventListener.h
diff --git a/Source/bindings/core/v8/ScriptEventListener.h b/Source/bindings/core/v8/ScriptEventListener.h
index 03b253fa5a4a0147948c6cc4c918515f0dc3bd42..987a33892c818d0c129a91b87dfe56b76fa7de4d 100644
--- a/Source/bindings/core/v8/ScriptEventListener.h
+++ b/Source/bindings/core/v8/ScriptEventListener.h
@@ -45,9 +45,9 @@ class QualifiedName;
PassRefPtrWillBeRawPtr<V8LazyEventListener> createAttributeEventListener(Node*, const QualifiedName&, const AtomicString& value, const AtomicString& eventParameterName);
PassRefPtrWillBeRawPtr<V8LazyEventListener> createAttributeEventListener(LocalFrame*, const QualifiedName&, const AtomicString& value, const AtomicString& eventParameterName);
-ScriptValue eventListenerHandler(ExecutionContext*, EventListener*);
-ScriptState* eventListenerHandlerScriptState(LocalFrame*, EventListener*);
-bool eventListenerHandlerLocation(ExecutionContext*, EventListener*, String& scriptId, int& lineNumber, int& columnNumber);
+v8::Local<v8::Object> eventListenerHandler(ExecutionContext*, EventListener*);
+v8::Local<v8::Function> eventListenerEffectiveFunction(v8::Isolate*, v8::Local<v8::Object> handler);
+void functionLocation(v8::Local<v8::Function>, String& scriptId, int& lineNumber, int& columnNumber);
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698