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 03274ad89beb85cfb05577d5b8f0af42024cb5a8..d6fff842763be797264032c9cdf573d1e3b27ba3 100644 |
--- a/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.cpp |
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.cpp |
@@ -38,7 +38,7 @@ |
namespace blink { |
-V8FunctionCall::V8FunctionCall(V8DebuggerClient* client, v8::Local<v8::Context> context, v8::Local<v8::Value> value, const String& name) |
+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)) |
@@ -51,7 +51,7 @@ void V8FunctionCall::appendArgument(v8::Local<v8::Value> value) |
m_arguments.append(value); |
} |
-void V8FunctionCall::appendArgument(const String& argument) |
+void V8FunctionCall::appendArgument(const String16& argument) |
{ |
m_arguments.append(toV8String(m_context->GetIsolate(), argument)); |
} |