| Index: third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h b/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h
|
| index 81cb43718e933931230d13bcc3bf70f93d1ae57c..1d72257c03ef5ea4db3c3f948a0cf5c3874d0e39 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h
|
| @@ -41,7 +41,6 @@ namespace blink {
|
| class InjectedScriptManager;
|
| class RemoteObjectId;
|
| class V8FunctionCall;
|
| -class V8DebuggerClient;
|
|
|
| namespace protocol {
|
| class DictionaryValue;
|
| @@ -116,7 +115,7 @@ public:
|
|
|
| private:
|
| friend InjectedScript* InjectedScriptManager::injectedScriptFor(v8::Local<v8::Context>);
|
| - InjectedScript(InjectedScriptManager*, v8::Local<v8::Context>, v8::Local<v8::Object>, V8DebuggerClient*, PassOwnPtr<InjectedScriptNative>, int contextId);
|
| + InjectedScript(InjectedScriptManager*, v8::Local<v8::Context>, v8::Local<v8::Object>, PassOwnPtr<InjectedScriptNative>, int contextId);
|
|
|
| bool canAccessInspectedWindow() const;
|
| v8::Local<v8::Value> v8Value() const;
|
| @@ -129,7 +128,6 @@ private:
|
| v8::Isolate* m_isolate;
|
| v8::Global<v8::Context> m_context;
|
| v8::Global<v8::Value> m_value;
|
| - V8DebuggerClient* m_client;
|
| OwnPtr<InjectedScriptNative> m_native;
|
| int m_contextId;
|
| String m_origin;
|
|
|