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

Unified Diff: third_party/WebKit/Source/core/frame/RemoteFrameView.h

Issue 2723993002: Rename platform/Widget to platform/FrameViewBase in core. (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/frame/RemoteFrameView.h
diff --git a/third_party/WebKit/Source/core/frame/RemoteFrameView.h b/third_party/WebKit/Source/core/frame/RemoteFrameView.h
index c117abb58970d6949410abd4d7cfbf528499faf4..9e4843112439cfd8fa34f55e9c36393bfa55ceb6 100644
--- a/third_party/WebKit/Source/core/frame/RemoteFrameView.h
+++ b/third_party/WebKit/Source/core/frame/RemoteFrameView.h
@@ -5,7 +5,7 @@
#ifndef RemoteFrameView_h
#define RemoteFrameView_h
-#include "platform/Widget.h"
+#include "platform/FrameViewBase.h"
#include "platform/geometry/IntRect.h"
#include "platform/heap/Handle.h"
@@ -13,14 +13,14 @@ namespace blink {
class RemoteFrame;
-class RemoteFrameView final : public Widget {
+class RemoteFrameView final : public FrameViewBase {
public:
static RemoteFrameView* create(RemoteFrame*);
~RemoteFrameView() override;
bool isRemoteFrameView() const override { return true; }
- void setParent(Widget*) override;
+ void setParent(FrameViewBase*) override;
RemoteFrame& frame() const {
ASSERT(m_remoteFrame);
@@ -53,10 +53,10 @@ class RemoteFrameView final : public Widget {
};
DEFINE_TYPE_CASTS(RemoteFrameView,
- Widget,
- widget,
- widget->isRemoteFrameView(),
- widget.isRemoteFrameView());
+ FrameViewBase,
+ frameViewBase,
+ frameViewBase->isRemoteFrameView(),
+ frameViewBase.isRemoteFrameView());
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/frame/LocalFrameClient.h ('k') | third_party/WebKit/Source/core/frame/RemoteFrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698