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

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

Issue 1933573002: [DevTools] Remove last bits of logic from v8 agent wrappers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@1913283003
Patch Set: rebased, fixed uninitialized variable Created 4 years, 7 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/WorkerInspectorController.h
diff --git a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
index 95dc8a4aeb077a71144b9b6f3d457dacf392ceb9..91a4ed0de608b4a1956c7190234cd86770b75b03 100644
--- a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
+++ b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
@@ -54,7 +54,7 @@ class Frontend;
class FrontendChannel;
}
-class WorkerInspectorController final : public GarbageCollectedFinalized<WorkerInspectorController>, public InspectorRuntimeAgent::Client, public InspectorSession::Client {
+class WorkerInspectorController final : public GarbageCollectedFinalized<WorkerInspectorController>, public InspectorSession::Client {
WTF_MAKE_NONCOPYABLE(WorkerInspectorController);
public:
static WorkerInspectorController* create(WorkerGlobalScope*);
@@ -71,11 +71,9 @@ public:
private:
WorkerInspectorController(WorkerGlobalScope*, WorkerThreadDebugger*);
- // InspectorRuntimeAgent::Client implementation.
- void resumeStartup() override;
-
// InspectorSession::Client implementation.
void sendProtocolMessage(int sessionId, int callId, const String& response, const String& state) override;
+ void resumeStartup() override;
WorkerThreadDebugger* m_debugger;
Member<WorkerGlobalScope> m_workerGlobalScope;

Powered by Google App Engine
This is Rietveld 408576698