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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/RemoteObjectId.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/RemoteObjectId.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/RemoteObjectId.h b/third_party/WebKit/Source/platform/v8_inspector/RemoteObjectId.h
index 317ff51940d4012d765efc45e44005109a775042..038aa0e18456f889d80adaabcda8a0ea9bc5e5b1 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/RemoteObjectId.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/RemoteObjectId.h
@@ -5,8 +5,8 @@
#ifndef RemoteObjectId_h
#define RemoteObjectId_h
+#include "platform/inspector_protocol/String16.h"
#include "wtf/PassOwnPtr.h"
-#include "wtf/text/WTFString.h"
namespace blink {
@@ -22,14 +22,14 @@ protected:
RemoteObjectIdBase();
~RemoteObjectIdBase() { }
- PassOwnPtr<protocol::DictionaryValue> parseInjectedScriptId(const String&);
+ PassOwnPtr<protocol::DictionaryValue> parseInjectedScriptId(const String16&);
int m_injectedScriptId;
};
class RemoteObjectId final : public RemoteObjectIdBase {
public:
- static PassOwnPtr<RemoteObjectId> parse(const String&);
+ static PassOwnPtr<RemoteObjectId> parse(const String16&);
~RemoteObjectId() { }
int id() const { return m_id; }
@@ -41,7 +41,7 @@ private:
class RemoteCallFrameId final : public RemoteObjectIdBase {
public:
- static PassOwnPtr<RemoteCallFrameId> parse(const String&);
+ static PassOwnPtr<RemoteCallFrameId> parse(const String16&);
~RemoteCallFrameId() { }
int frameOrdinal() const { return m_frameOrdinal; }

Powered by Google App Engine
This is Rietveld 408576698