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

Unified Diff: Source/core/rendering/RenderIFrame.h

Issue 931003002: Move and rename RenderPart to LayoutPart. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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
« no previous file with comments | « Source/core/rendering/RenderFrame.cpp ('k') | Source/core/rendering/RenderIFrame.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderIFrame.h
diff --git a/Source/core/rendering/RenderIFrame.h b/Source/core/rendering/RenderIFrame.h
index c1f7286d29170eafc7513bc54c293f6746a9a8c5..f9bc2ebaaffef2c3427d2278677c61e93cd26715 100644
--- a/Source/core/rendering/RenderIFrame.h
+++ b/Source/core/rendering/RenderIFrame.h
@@ -26,11 +26,11 @@
#ifndef RenderIFrame_h
#define RenderIFrame_h
-#include "core/rendering/RenderPart.h"
+#include "core/layout/LayoutPart.h"
namespace blink {
-class RenderIFrame final : public RenderPart {
+class RenderIFrame final : public LayoutPart {
public:
explicit RenderIFrame(Element*);
@@ -40,7 +40,7 @@ private:
virtual void layout() override;
- virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectRenderIFrame || RenderPart::isOfType(type); }
+ virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectRenderIFrame || LayoutPart::isOfType(type); }
virtual const char* renderName() const override { return "RenderPartObject"; } // Lying for now to avoid breaking tests
« no previous file with comments | « Source/core/rendering/RenderFrame.cpp ('k') | Source/core/rendering/RenderIFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698