Index: third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.cpp |
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.cpp |
index 5d7c210b2517a484df266e6bf78155e295a23757..d6fff842763be797264032c9cdf573d1e3b27ba3 100644 |
--- a/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.cpp |
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.cpp |
@@ -30,7 +30,6 @@ |
#include "platform/v8_inspector/V8FunctionCall.h" |
-#include "platform/v8_inspector/V8DebuggerImpl.h" |
#include "platform/v8_inspector/V8StringUtil.h" |
#include "platform/v8_inspector/public/V8DebuggerClient.h" |
#include "wtf/PassOwnPtr.h" |
@@ -39,8 +38,8 @@ |
namespace blink { |
-V8FunctionCall::V8FunctionCall(V8DebuggerImpl* debugger, v8::Local<v8::Context> context, v8::Local<v8::Value> value, const String16& name) |
- : m_debugger(debugger) |
+V8FunctionCall::V8FunctionCall(V8DebuggerClient* client, v8::Local<v8::Context> context, v8::Local<v8::Value> value, const String16& name) |
+ : m_client(client) |
, m_context(context) |
, m_name(toV8String(context->GetIsolate(), name)) |
, m_value(value) |
@@ -105,7 +104,7 @@ |
} |
v8::Local<v8::Value> result; |
- if (!m_debugger->callFunction(function, m_context, thisObject, m_arguments.size(), info.get()).ToLocal(&result)) |
+ if (!m_client->callFunction(function, m_context, thisObject, m_arguments.size(), info.get()).ToLocal(&result)) |
return v8::Local<v8::Value>(); |
return result; |
} |