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/WebFrameWidgetImpl.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/WebFrameWidgetImpl.h
diff --git a/third_party/WebKit/Source/web/WebFrameWidgetImpl.h b/third_party/WebKit/Source/web/WebFrameWidgetImpl.h
index 74f07bef43ae0f34601438c30c01cfeec340bf7e..83184daf44516549c64d088dd82f1334af978413 100644
--- a/third_party/WebKit/Source/web/WebFrameWidgetImpl.h
+++ b/third_party/WebKit/Source/web/WebFrameWidgetImpl.h
@@ -32,6 +32,7 @@
#define WebFrameWidgetImpl_h
#include "core/frame/WebFrameWidgetBase.h"
+#include "core/frame/WebLocalFrameBase.h"
#include "platform/graphics/GraphicsLayer.h"
#include "platform/heap/SelfKeepAlive.h"
#include "platform/scroll/ScrollTypes.h"
@@ -44,7 +45,6 @@
#include "web/CompositorMutatorImpl.h"
#include "web/PageWidgetDelegate.h"
#include "web/WebInputMethodControllerImpl.h"
-#include "web/WebLocalFrameImpl.h"
namespace blink {
@@ -112,7 +112,7 @@ class WebFrameWidgetImpl final
void SetRemoteViewportIntersection(const WebRect&) override;
// WebFrameWidget implementation.
- WebLocalFrameImpl* LocalRoot() const override { return local_root_; }
+ WebLocalFrameBase* LocalRoot() const override { return local_root_; }
void SetVisibilityState(WebPageVisibilityState) override;
void SetBackgroundColorOverride(WebColor) override;
void ClearBackgroundColorOverride() override;
@@ -198,7 +198,7 @@ class WebFrameWidgetImpl final
// WebFrameWidget is associated with a subtree of the frame tree,
// corresponding to a maximal connected tree of LocalFrames. This member
// points to the root of that subtree.
- Member<WebLocalFrameImpl> local_root_;
+ Member<WebLocalFrameBase> local_root_;
WebSize size_;
« no previous file with comments | « third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp ('k') | third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698