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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h

Issue 2722953003: Part 1 to rename platform/Widget to platform/FrameViewBase. (Closed)
Patch Set: Created 3 years, 10 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/core/html/HTMLFrameOwnerElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h b/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h
index 59ea874dcd69a55063679559cdec41648d812f50..7f4022656d7f19297e6514977aa703154962a14b 100644
--- a/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h
@@ -34,8 +34,8 @@ namespace blink {
class ExceptionState;
class Frame;
+class FrameViewBase;
class LayoutPart;
-class Widget;
class CORE_EXPORT HTMLFrameOwnerElement : public HTMLElement,
public FrameOwner {
@@ -59,9 +59,9 @@ class CORE_EXPORT HTMLFrameOwnerElement : public HTMLElement,
virtual bool loadedNonEmptyDocument() const { return false; }
virtual void didLoadNonEmptyDocument() {}
- void setWidget(Widget*);
- Widget* releaseWidget();
- Widget* ownedWidget() const;
+ void setWidget(FrameViewBase*);
+ FrameViewBase* releaseWidget();
+ FrameViewBase* ownedWidget() const;
class UpdateSuspendScope {
STACK_ALLOCATED();
@@ -106,7 +106,7 @@ class CORE_EXPORT HTMLFrameOwnerElement : public HTMLElement,
bool replaceCurrentItem);
bool isKeyboardFocusable() const override;
- void disposeWidgetSoon(Widget*);
+ void disposeWidgetSoon(FrameViewBase*);
private:
// Intentionally private to prevent redundant checks when the type is
@@ -121,7 +121,7 @@ class CORE_EXPORT HTMLFrameOwnerElement : public HTMLElement,
}
Member<Frame> m_contentFrame;
- Member<Widget> m_widget;
+ Member<FrameViewBase> m_widget;
SandboxFlags m_sandboxFlags;
};
« no previous file with comments | « third_party/WebKit/Source/core/frame/LocalFrameClient.h ('k') | third_party/WebKit/Source/core/html/HTMLPlugInElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698