Index: Source/core/inspector/InjectedScript.h |
diff --git a/Source/core/inspector/InjectedScript.h b/Source/core/inspector/InjectedScript.h |
index bfe33e4a3f7337862db14bb92d88d6825592b421..5fa0d191ee9123d3cbca9c128304887fdfa06d58 100644 |
--- a/Source/core/inspector/InjectedScript.h |
+++ b/Source/core/inspector/InjectedScript.h |
@@ -113,6 +113,9 @@ public: |
void setCustomObjectFormatterEnabled(bool); |
+ v8::Local<v8::Array> frameworkUserEventListeners(v8::Local<v8::Value>); |
+ v8::Local<v8::Set> frameworkInternalEventHandlers(v8::Local<v8::Value>); |
+ |
private: |
friend InjectedScript InjectedScriptManager::injectedScriptFor(ScriptState*); |
using InspectedStateAccessCheck = bool (*)(ScriptState*); |
@@ -125,6 +128,7 @@ private: |
void makeCall(ScriptFunctionCall&, RefPtr<JSONValue>* result); |
void makeEvalCall(ErrorString*, ScriptFunctionCall&, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown, RefPtr<TypeBuilder::Debugger::ExceptionDetails>* = 0); |
void makeCallWithExceptionDetails(ScriptFunctionCall&, RefPtr<JSONValue>* result, RefPtr<TypeBuilder::Debugger::ExceptionDetails>*); |
+ ScriptValue callMethod(String methodName, v8::Local<v8::Value>); |
ScriptValue m_injectedScriptObject; |
InspectedStateAccessCheck m_inspectedStateAccessCheck; |