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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorWorkerAgent.h

Issue 2468233003: [DevTools] Migrate Accessibility, Log, Worker to new style (Closed)
Patch Set: addressed comments Created 4 years, 1 month 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/InspectorWorkerAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorWorkerAgent.h b/third_party/WebKit/Source/core/inspector/InspectorWorkerAgent.h
index be847151389df77b96bd5e0340dcc5cc641d97f8..971b562459b5e194d70deeaae25831e5c95235b7 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorWorkerAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorWorkerAgent.h
@@ -52,7 +52,7 @@ class CORE_EXPORT InspectorWorkerAgent final
~InspectorWorkerAgent() override;
DECLARE_VIRTUAL_TRACE();
- void disable(ErrorString*) override;
+ Response disable() override;
void restore() override;
void didCommitLoadForLocalFrame(LocalFrame*) override;
@@ -62,12 +62,9 @@ class CORE_EXPORT InspectorWorkerAgent final
void workerTerminated(WorkerInspectorProxy*);
// Called from Dispatcher
- void setAutoAttach(ErrorString*,
- bool autoAttach,
- bool waitForDebuggerOnStart) override;
- void sendMessageToTarget(ErrorString*,
- const String& targetId,
- const String& message) override;
+ Response setAutoAttach(bool autoAttach, bool waitForDebuggerOnStart) override;
+ Response sendMessageToTarget(const String& targetId,
+ const String& message) override;
void setTracingSessionId(const String&);

Powered by Google App Engine
This is Rietveld 408576698