| Index: third_party/WebKit/Source/web/WebDevToolsAgentImpl.h
|
| diff --git a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h
|
| index 83e6056b89c754cb0b692d6cb141da67c4fc501c..e5fb5f21d66f298031f23a2b38e72e4fc7e02825 100644
|
| --- a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h
|
| +++ b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.h
|
| @@ -55,7 +55,7 @@ class InspectorTraceEvents;
|
| class LocalFrame;
|
| class WebDevToolsAgentClient;
|
| class WebLayerTreeView;
|
| -class WebLocalFrameImpl;
|
| +class WebLocalFrameBase;
|
| class WebString;
|
|
|
| class WebDevToolsAgentImpl final
|
| @@ -67,7 +67,7 @@ class WebDevToolsAgentImpl final
|
| public InspectorSession::Client,
|
| private WebThread::TaskObserver {
|
| public:
|
| - static WebDevToolsAgentImpl* Create(WebLocalFrameImpl*,
|
| + static WebDevToolsAgentImpl* Create(WebLocalFrameBase*,
|
| WebDevToolsAgentClient*);
|
| ~WebDevToolsAgentImpl() override;
|
| DECLARE_VIRTUAL_TRACE();
|
| @@ -105,7 +105,7 @@ class WebDevToolsAgentImpl final
|
| WebString EvaluateInWebInspectorOverlay(const WebString& script) override;
|
|
|
| private:
|
| - WebDevToolsAgentImpl(WebLocalFrameImpl*,
|
| + WebDevToolsAgentImpl(WebLocalFrameBase*,
|
| WebDevToolsAgentClient*,
|
| bool include_view_agents);
|
|
|
| @@ -146,7 +146,7 @@ class WebDevToolsAgentImpl final
|
| bool Attached() const { return session_.Get(); }
|
|
|
| WebDevToolsAgentClient* client_;
|
| - Member<WebLocalFrameImpl> web_local_frame_impl_;
|
| + Member<WebLocalFrameBase> web_local_frame_impl_;
|
|
|
| Member<CoreProbeSink> probe_sink_;
|
| Member<InspectorResourceContentLoader> resource_content_loader_;
|
|
|