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

Unified Diff: third_party/WebKit/Source/core/inspector/WorkerRuntimeAgent.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/WorkerRuntimeAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/WorkerRuntimeAgent.h b/third_party/WebKit/Source/core/inspector/WorkerRuntimeAgent.h
index 113e14c3e52d2978709869fbb5ca4ad1785017ac..be08467dbb956a713e0f8cbcb91a4ccc9ec8a045 100644
--- a/third_party/WebKit/Source/core/inspector/WorkerRuntimeAgent.h
+++ b/third_party/WebKit/Source/core/inspector/WorkerRuntimeAgent.h
@@ -40,9 +40,9 @@ class WorkerGlobalScope;
class WorkerRuntimeAgent final : public InspectorRuntimeAgent {
public:
- static WorkerRuntimeAgent* create(V8RuntimeAgent* agent, WorkerGlobalScope* context, InspectorRuntimeAgent::Client* client)
+ static WorkerRuntimeAgent* create(V8RuntimeAgent* agent, WorkerGlobalScope* context)
{
- return new WorkerRuntimeAgent(agent, context, client);
+ return new WorkerRuntimeAgent(agent, context);
}
~WorkerRuntimeAgent() override;
DECLARE_VIRTUAL_TRACE();
@@ -50,7 +50,7 @@ public:
void enable(ErrorString*) final;
private:
- WorkerRuntimeAgent(V8RuntimeAgent*, WorkerGlobalScope*, InspectorRuntimeAgent::Client*);
+ WorkerRuntimeAgent(V8RuntimeAgent*, WorkerGlobalScope*);
Member<WorkerGlobalScope> m_workerGlobalScope;
};

Powered by Google App Engine
This is Rietveld 408576698