diff options
Diffstat (limited to 'Source/JavaScriptCore/inspector/InjectedScriptBase.h')
-rw-r--r-- | Source/JavaScriptCore/inspector/InjectedScriptBase.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Source/JavaScriptCore/inspector/InjectedScriptBase.h b/Source/JavaScriptCore/inspector/InjectedScriptBase.h index 034e0c20a..fd01fabd7 100644 --- a/Source/JavaScriptCore/inspector/InjectedScriptBase.h +++ b/Source/JavaScriptCore/inspector/InjectedScriptBase.h @@ -32,10 +32,8 @@ #ifndef InjectedScriptBase_h #define InjectedScriptBase_h -#if ENABLE(INSPECTOR) - #include "InspectorEnvironment.h" -#include "InspectorJSTypeBuilders.h" +#include "InspectorProtocolObjects.h" #include "bindings/ScriptObject.h" #include <wtf/Forward.h> #include <wtf/RefPtr.h> @@ -62,13 +60,12 @@ protected: InspectorEnvironment* inspectorEnvironment() const { return m_environment; } - void initialize(Deprecated::ScriptObject, InspectorEnvironment*); bool hasAccessToInspectedScriptState() const; const Deprecated::ScriptObject& injectedScriptObject() const; Deprecated::ScriptValue callFunctionWithEvalEnabled(Deprecated::ScriptFunctionCall&, bool& hadException) const; void makeCall(Deprecated::ScriptFunctionCall&, RefPtr<InspectorValue>* result); - void makeEvalCall(ErrorString*, Deprecated::ScriptFunctionCall&, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown); + void makeEvalCall(ErrorString&, Deprecated::ScriptFunctionCall&, RefPtr<Protocol::Runtime::RemoteObject>* result, Protocol::OptOutput<bool>* wasThrown, Protocol::OptOutput<int>* savedResult = nullptr); private: String m_name; @@ -78,6 +75,4 @@ private: } // namespace Inspector -#endif // ENABLE(INSPECTOR) - #endif // InjectedScriptBase_h |