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 |