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

Unified Diff: Source/core/layout/LayoutFieldset.h

Issue 939273002: Rename rendering/RenderFieldset to layout/LayoutFieldset. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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/html/HTMLFieldSetElement.cpp ('k') | Source/core/layout/LayoutFieldset.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutFieldset.h
diff --git a/Source/core/rendering/RenderFieldset.h b/Source/core/layout/LayoutFieldset.h
similarity index 85%
rename from Source/core/rendering/RenderFieldset.h
rename to Source/core/layout/LayoutFieldset.h
index 02c5cf06adac598c7f156f4f3e43212c4d715577..472686de3f1614ec1f847928845222ca0c6d8c88 100644
--- a/Source/core/rendering/RenderFieldset.h
+++ b/Source/core/layout/LayoutFieldset.h
@@ -21,22 +21,22 @@
*
*/
-#ifndef RenderFieldset_h
-#define RenderFieldset_h
+#ifndef LayoutFieldset_h
+#define LayoutFieldset_h
#include "core/rendering/RenderBlockFlow.h"
namespace blink {
-class RenderFieldset final : public RenderBlockFlow {
+class LayoutFieldset final : public RenderBlockFlow {
public:
- explicit RenderFieldset(Element*);
+ explicit LayoutFieldset(Element*);
enum FindLegendOption { IgnoreFloatingOrOutOfFlow, IncludeFloatingOrOutOfFlow };
RenderBox* findLegend(FindLegendOption = IgnoreFloatingOrOutOfFlow) const;
private:
- virtual const char* renderName() const override { return "RenderFieldSet"; }
+ virtual const char* renderName() const override { return "LayoutFieldset"; }
virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectFieldset || RenderBlockFlow::isOfType(type); }
virtual LayoutObject* layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope&) override;
@@ -48,8 +48,8 @@ private:
virtual void paintMask(const PaintInfo&, const LayoutPoint&) override;
};
-DEFINE_LAYOUT_OBJECT_TYPE_CASTS(RenderFieldset, isFieldset());
+DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutFieldset, isFieldset());
} // namespace blink
-#endif // RenderFieldset_h
+#endif // LayoutFieldset_h
« no previous file with comments | « Source/core/html/HTMLFieldSetElement.cpp ('k') | Source/core/layout/LayoutFieldset.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698