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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/public/V8Debugger.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/public/V8Debugger.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/V8Debugger.h b/third_party/WebKit/Source/platform/v8_inspector/public/V8Debugger.h
index aba7a46ea02fb621a81c3111e27a0d072fbc8ea8..90c4a9e13ffc85cb98cae1a23001836b5979710d 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/public/V8Debugger.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8Debugger.h
@@ -37,11 +37,11 @@ public:
// Each v8::Context is a part of a group. The group id is used to find approapriate
// V8DebuggerAgent to notify about events in the context.
// |contextGroupId| must be non-0.
- static void setContextDebugData(v8::Local<v8::Context>, const String& type, int contextGroupId);
+ static void setContextDebugData(v8::Local<v8::Context>, const String16& type, int contextGroupId);
static int contextId(v8::Local<v8::Context>);
static v8::Local<v8::Symbol> commandLineAPISymbol(v8::Isolate*);
- static bool isCommandLineAPIMethod(const AtomicString& name);
+ static bool isCommandLineAPIMethod(const String16& name);
virtual PassOwnPtr<V8StackTrace> createStackTrace(v8::Local<v8::StackTrace>, size_t maxStackSize) = 0;
virtual PassOwnPtr<V8StackTrace> captureStackTrace(size_t maxStackSize) = 0;

Powered by Google App Engine
This is Rietveld 408576698