| Index: third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.h b/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.h
|
| index 7282921036a003f10929cb4113276f628d3cd292..352b79a180c5a783195fdc8a66e30fdbdfc7f27d 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.h
|
| @@ -38,11 +38,11 @@
|
|
|
| namespace blink {
|
|
|
| -class V8DebuggerClient;
|
| +class V8DebuggerImpl;
|
|
|
| class V8FunctionCall {
|
| public:
|
| - V8FunctionCall(V8DebuggerClient*, v8::Local<v8::Context>, v8::Local<v8::Value>, const String& name);
|
| + V8FunctionCall(V8DebuggerImpl*, v8::Local<v8::Context>, v8::Local<v8::Value>, const String& name);
|
|
|
| void appendArgument(v8::Local<v8::Value>);
|
| void appendArgument(const String&);
|
| @@ -57,7 +57,7 @@ public:
|
| v8::Local<v8::Context> context() { return m_context; }
|
|
|
| protected:
|
| - V8DebuggerClient* m_client;
|
| + V8DebuggerImpl* m_debugger;
|
| v8::Local<v8::Context> m_context;
|
| protocol::Vector<v8::Local<v8::Value>> m_arguments;
|
| v8::Local<v8::String> m_name;
|
|
|