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

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

Issue 2882853006: Move LocalFrameClientImpl to use WebLocalFrameBase instead of WebLocalFrameImpl. (Closed)
Patch Set: 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/WebDevToolsFrontendImpl.h
diff --git a/third_party/WebKit/Source/web/WebDevToolsFrontendImpl.h b/third_party/WebKit/Source/web/WebDevToolsFrontendImpl.h
index f7ea56717755a6edd4e41226e9cd3f198145ebf8..70aa5099be19269c3e46c135f4606602588af476 100644
--- a/third_party/WebKit/Source/web/WebDevToolsFrontendImpl.h
+++ b/third_party/WebKit/Source/web/WebDevToolsFrontendImpl.h
@@ -41,17 +41,17 @@
namespace blink {
class DevToolsHost;
-class WebLocalFrameImpl;
+class WebLocalFrameBase;
class WebDevToolsFrontendImpl final : public WebDevToolsFrontend,
public InspectorFrontendClient {
WTF_MAKE_NONCOPYABLE(WebDevToolsFrontendImpl);
public:
- WebDevToolsFrontendImpl(WebLocalFrameImpl*, WebDevToolsFrontendClient*);
+ WebDevToolsFrontendImpl(WebLocalFrameBase*, WebDevToolsFrontendClient*);
~WebDevToolsFrontendImpl() override;
- void DidClearWindowObject(WebLocalFrameImpl*);
+ void DidClearWindowObject(WebLocalFrameBase*);
void SendMessageToEmbedder(const WTF::String&) override;
@@ -66,7 +66,7 @@ class WebDevToolsFrontendImpl final : public WebDevToolsFrontend,
const String& source) override;
private:
- Persistent<WebLocalFrameImpl> web_frame_;
+ Persistent<WebLocalFrameBase> web_frame_;
WebDevToolsFrontendClient* client_;
Persistent<DevToolsHost> devtools_host_;
typedef HashMap<String, String> InjectedScriptForOriginMap;
« no previous file with comments | « third_party/WebKit/Source/web/LocalFrameClientImpl.cpp ('k') | third_party/WebKit/Source/web/WebDevToolsFrontendImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698