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

Unified Diff: Source/core/layout/svg/LayoutSVGHiddenContainer.h

Issue 921633007: Move the SVG container code from rendering/svg to layout/svg. (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/layout/svg/LayoutSVGContainer.cpp ('k') | Source/core/layout/svg/LayoutSVGHiddenContainer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/svg/LayoutSVGHiddenContainer.h
diff --git a/Source/core/rendering/svg/RenderSVGHiddenContainer.h b/Source/core/layout/svg/LayoutSVGHiddenContainer.h
similarity index 85%
rename from Source/core/rendering/svg/RenderSVGHiddenContainer.h
rename to Source/core/layout/svg/LayoutSVGHiddenContainer.h
index 29c8d989d96beadedcc2f94c87799ea7eca2b249..bf4f999169460f6e380249e705eb97b6b310c385 100644
--- a/Source/core/rendering/svg/RenderSVGHiddenContainer.h
+++ b/Source/core/layout/svg/LayoutSVGHiddenContainer.h
@@ -17,8 +17,8 @@
* Boston, MA 02110-1301, USA.
*/
-#ifndef RenderSVGHiddenContainer_h
-#define RenderSVGHiddenContainer_h
+#ifndef LayoutSVGHiddenContainer_h
+#define LayoutSVGHiddenContainer_h
#include "core/layout/svg/LayoutSVGContainer.h"
@@ -28,11 +28,11 @@ class SVGElement;
// This class is for containers which are never drawn, but do need to support style
// <defs>, <linearGradient>, <radialGradient> are all good examples
-class RenderSVGHiddenContainer : public LayoutSVGContainer {
+class LayoutSVGHiddenContainer : public LayoutSVGContainer {
public:
- explicit RenderSVGHiddenContainer(SVGElement*);
+ explicit LayoutSVGHiddenContainer(SVGElement*);
- virtual const char* renderName() const override { return "RenderSVGHiddenContainer"; }
+ virtual const char* renderName() const override { return "LayoutSVGHiddenContainer"; }
protected:
virtual void layout() override;
@@ -48,4 +48,4 @@ private:
};
}
-#endif // RenderSVGHiddenContainer_h
+#endif // LayoutSVGHiddenContainer_h
« no previous file with comments | « Source/core/layout/svg/LayoutSVGContainer.cpp ('k') | Source/core/layout/svg/LayoutSVGHiddenContainer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698