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

Unified Diff: third_party/WebKit/Source/web/WebDevToolsAgentImpl.h

Issue 2900593002: Move many more classes to use WebLocalFrameBase over WebLocalFrameImpl. (Closed)
Patch Set: Rebase Created 3 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/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_;
« no previous file with comments | « third_party/WebKit/Source/web/PageOverlayTest.cpp ('k') | third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698