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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/V8StringUtil.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/V8StringUtil.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8StringUtil.h b/third_party/WebKit/Source/platform/v8_inspector/V8StringUtil.h
index d44eb78e6a062cf7e98c65ca36363ae1d092ed23..c1c506baae81406f104b1dafb3e1388d5f2d075c 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8StringUtil.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8StringUtil.h
@@ -5,16 +5,16 @@
#ifndef V8StringUtil_h
#define V8StringUtil_h
-#include "wtf/text/WTFString.h"
+#include "platform/inspector_protocol/String16.h"
#include <v8.h>
namespace blink {
-v8::Local<v8::String> toV8String(v8::Isolate*, const String&);
-v8::Local<v8::String> toV8StringInternalized(v8::Isolate*, const String&);
+v8::Local<v8::String> toV8String(v8::Isolate*, const String16&);
+v8::Local<v8::String> toV8StringInternalized(v8::Isolate*, const String16&);
-String toWTFString(v8::Local<v8::String>);
-String toWTFStringWithTypeCheck(v8::Local<v8::Value>);
+String16 toProtocolString(v8::Local<v8::String>);
+String16 toProtocolStringWithTypeCheck(v8::Local<v8::Value>);
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698