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 a9230cc9b2803b902f30f4bb96d509fa1e7e50ab..a063620d5c32b531f92152a8bde89d3dfb3be242 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 V8DebuggerImpl; |
+class V8DebuggerClient; |
class V8FunctionCall { |
public: |
- V8FunctionCall(V8DebuggerImpl*, v8::Local<v8::Context>, v8::Local<v8::Value>, const String16& name); |
+ V8FunctionCall(V8DebuggerClient*, v8::Local<v8::Context>, v8::Local<v8::Value>, const String16& name); |
void appendArgument(v8::Local<v8::Value>); |
void appendArgument(const String16&); |
@@ -57,7 +57,7 @@ |
v8::Local<v8::Context> context() { return m_context; } |
protected: |
- V8DebuggerImpl* m_debugger; |
+ V8DebuggerClient* m_client; |
v8::Local<v8::Context> m_context; |
protocol::Vector<v8::Local<v8::Value>> m_arguments; |
v8::Local<v8::String> m_name; |