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

Unified Diff: third_party/WebKit/Source/core/inspector/PageRuntimeAgent.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/PageRuntimeAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/PageRuntimeAgent.h b/third_party/WebKit/Source/core/inspector/PageRuntimeAgent.h
index 17b55273a3f7d9a2ef3bd749dd38c4a5a3473142..b06c6c2032591094e2e322d7e5b29934f4b1ee05 100644
--- a/third_party/WebKit/Source/core/inspector/PageRuntimeAgent.h
+++ b/third_party/WebKit/Source/core/inspector/PageRuntimeAgent.h
@@ -42,9 +42,9 @@ class InspectedFrames;
class CORE_EXPORT PageRuntimeAgent final : public InspectorRuntimeAgent {
public:
- static PageRuntimeAgent* create(InspectorRuntimeAgent::Client* client, V8RuntimeAgent* agent, InspectedFrames* inspectedFrames)
+ static PageRuntimeAgent* create(V8RuntimeAgent* agent, InspectedFrames* inspectedFrames)
{
- return new PageRuntimeAgent(client, agent, inspectedFrames);
+ return new PageRuntimeAgent(agent, inspectedFrames);
}
~PageRuntimeAgent() override;
DECLARE_VIRTUAL_TRACE();
@@ -52,7 +52,7 @@ public:
void disable(ErrorString*) override;
private:
- PageRuntimeAgent(Client*, V8RuntimeAgent*, InspectedFrames*);
+ PageRuntimeAgent(V8RuntimeAgent*, InspectedFrames*);
Member<InspectedFrames> m_inspectedFrames;
};

Powered by Google App Engine
This is Rietveld 408576698