Index: third_party/WebKit/Source/core/inspector/v8/V8RuntimeAgentImpl.h |
diff --git a/third_party/WebKit/Source/core/inspector/v8/V8RuntimeAgentImpl.h b/third_party/WebKit/Source/core/inspector/v8/V8RuntimeAgentImpl.h |
index b4b9f2d43c5950fff03b8095e1a01c38fb5f3c75..7db5b6c8949a593134dc3d0620c53d9ca92ad204 100644 |
--- a/third_party/WebKit/Source/core/inspector/v8/V8RuntimeAgentImpl.h |
+++ b/third_party/WebKit/Source/core/inspector/v8/V8RuntimeAgentImpl.h |
@@ -44,7 +44,6 @@ namespace blink { |
class InjectedScript; |
class InjectedScriptManager; |
class JSONArray; |
-class ScriptState; |
class V8DebuggerImpl; |
typedef String ErrorString; |
@@ -93,8 +92,8 @@ public: |
private: |
InjectedScriptManager* injectedScriptManager() { return m_injectedScriptManager; } |
- void reportExecutionContextCreated(ScriptState*, const String& type, const String& origin, const String& humanReadableName, const String& frameId) override; |
- void reportExecutionContextDestroyed(ScriptState*) override; |
+ void reportExecutionContextCreated(v8::Local<v8::Context>, const String& type, const String& origin, const String& humanReadableName, const String& frameId) override; |
+ void reportExecutionContextDestroyed(v8::Local<v8::Context>) override; |
RefPtr<JSONObject> m_state; |
InspectorFrontend::Runtime* m_frontend; |