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

Unified Diff: third_party/WebKit/Source/web/LocalFrameClientImpl.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/LocalFrameClientImpl.h
diff --git a/third_party/WebKit/Source/web/LocalFrameClientImpl.h b/third_party/WebKit/Source/web/LocalFrameClientImpl.h
index 9e8a861d030219550f48d6d63c4924f4136347cc..786ad754630c1688cfaa51016ecb77d34e58eeed 100644
--- a/third_party/WebKit/Source/web/LocalFrameClientImpl.h
+++ b/third_party/WebKit/Source/web/LocalFrameClientImpl.h
@@ -43,17 +43,17 @@
namespace blink {
class WebDevToolsAgentImpl;
-class WebLocalFrameImpl;
+class WebLocalFrameBase;
class LocalFrameClientImpl final : public LocalFrameClient {
public:
- static LocalFrameClientImpl* Create(WebLocalFrameImpl*);
+ static LocalFrameClientImpl* Create(WebLocalFrameBase*);
~LocalFrameClientImpl() override;
DECLARE_VIRTUAL_TRACE();
- WebLocalFrameImpl* GetWebFrame() const { return web_frame_.Get(); }
+ WebLocalFrameBase* GetWebFrame() const { return web_frame_.Get(); }
// LocalFrameClient ----------------------------------------------
@@ -227,14 +227,14 @@ class LocalFrameClientImpl final : public LocalFrameClient {
TextCheckerClient& GetTextCheckerClient() const override;
private:
- explicit LocalFrameClientImpl(WebLocalFrameImpl*);
+ explicit LocalFrameClientImpl(WebLocalFrameBase*);
bool IsLocalFrameClientImpl() const override { return true; }
WebDevToolsAgentImpl* DevToolsAgent();
// The WebFrame that owns this object and manages its lifetime. Therefore,
// the web frame object is guaranteed to exist.
- Member<WebLocalFrameImpl> web_frame_;
+ Member<WebLocalFrameBase> web_frame_;
String user_agent_;
};
« no previous file with comments | « third_party/WebKit/Source/core/frame/WebLocalFrameBase.h ('k') | third_party/WebKit/Source/web/LocalFrameClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698