Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1335)

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.cpp

Issue 1767883002: DevTools: generate string16-based handlers for v8_inspector. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: for landing 2 Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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));
}

Powered by Google App Engine
This is Rietveld 408576698