| 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;
|
| };
|
|
|