Chromium Code Reviews| Index: third_party/WebKit/Source/platform/v8_inspector/InjectedScriptHost.h |
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptHost.h b/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptHost.h |
| index 2f4ccd2a98d4415494fca289758417ba9d018c1f..03a69a27a6ea759e01684f32765bcd94bad8835c 100644 |
| --- a/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptHost.h |
| +++ b/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptHost.h |
| @@ -30,13 +30,11 @@ |
| #ifndef InjectedScriptHost_h |
| #define InjectedScriptHost_h |
| -#include "platform/inspector_protocol/Collections.h" |
| #include "wtf/PassOwnPtr.h" |
| #include <v8.h> |
| namespace blink { |
| -class V8InspectorSessionImpl; |
| class V8DebuggerImpl; |
| namespace protocol { |
| @@ -50,11 +48,9 @@ class Value; |
| class InjectedScriptHost { |
| public: |
| - static PassOwnPtr<InjectedScriptHost> create(V8DebuggerImpl*, V8InspectorSessionImpl*); |
| + static PassOwnPtr<InjectedScriptHost> create(V8DebuggerImpl*); |
| ~InjectedScriptHost(); |
| - void inspectImpl(PassOwnPtr<protocol::Value> objectToInspect, PassOwnPtr<protocol::Value> hints); |
| - |
| V8DebuggerImpl* debugger() { return m_debugger; } |
| // FIXME: store this template in per isolate data |
| @@ -62,10 +58,9 @@ public: |
| v8::Local<v8::FunctionTemplate> wrapperTemplate(v8::Isolate* isolate) { return v8::Local<v8::FunctionTemplate>::New(isolate, m_wrapperTemplate); } |
| private: |
| - InjectedScriptHost(V8DebuggerImpl*, V8InspectorSessionImpl*); |
| + InjectedScriptHost(V8DebuggerImpl*); |
|
dgozman
2016/04/27 00:25:50
style: explicit
kozy
2016/04/27 01:22:00
Done.
|
| V8DebuggerImpl* m_debugger; |
| - V8InspectorSessionImpl* m_session; |
| v8::Global<v8::FunctionTemplate> m_wrapperTemplate; |
| }; |