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

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

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.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..a063620d5c32b531f92152a8bde89d3dfb3be242 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.h
@@ -32,8 +32,8 @@
#define V8FunctionCall_h
#include "platform/inspector_protocol/Collections.h"
+#include "platform/inspector_protocol/String16.h"
-#include "wtf/text/WTFString.h"
#include <v8.h>
namespace blink {
@@ -42,10 +42,10 @@ class V8DebuggerClient;
class V8FunctionCall {
public:
- V8FunctionCall(V8DebuggerClient*, v8::Local<v8::Context>, v8::Local<v8::Value>, const String& name);
+ V8FunctionCall(V8DebuggerClient*, v8::Local<v8::Context>, v8::Local<v8::Value>, const String16& name);
void appendArgument(v8::Local<v8::Value>);
- void appendArgument(const String&);
+ void appendArgument(const String16&);
void appendArgument(int);
void appendArgument(bool);
void appendUndefinedArgument();

Powered by Google App Engine
This is Rietveld 408576698