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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorProfilerAgent.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/core/inspector/InspectorProfilerAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorProfilerAgent.h b/third_party/WebKit/Source/core/inspector/InspectorProfilerAgent.h
index 905776f08dd776b1da4d840c4e282d1adf72a2c7..47c815a6c75f78e76e77b4b53edd8c2d496d5cc7 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorProfilerAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorProfilerAgent.h
@@ -44,8 +44,6 @@ class InspectorFrontend;
class V8Debugger;
class V8ProfilerAgent;
-typedef String ErrorString;
-
class CORE_EXPORT InspectorProfilerAgent final : public InspectorBaseAgent<InspectorProfilerAgent, protocol::Frontend::Profiler>, public protocol::Dispatcher::ProfilerCommandHandler {
WTF_MAKE_NONCOPYABLE(InspectorProfilerAgent);
USING_FAST_MALLOC_WILL_BE_REMOVED(InspectorProfilerAgent);
@@ -67,8 +65,8 @@ public:
void clearFrontend() override;
void restore() override;
- void consoleProfile(ExecutionContext*, const String& title);
- void consoleProfileEnd(const String& title);
+ void consoleProfile(ExecutionContext*, const String16& title);
+ void consoleProfileEnd(const String16& title);
void enable(ErrorString*) override;
void disable(ErrorString*) override;

Powered by Google App Engine
This is Rietveld 408576698