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

Unified Diff: Source/core/layout/svg/LayoutSVGTSpan.cpp

Issue 927583002: Moving RenderSVG* files from rendering/ to layout/ (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/LayoutSVGTSpan.h ('k') | Source/core/layout/svg/SVGLayoutSupport.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/svg/LayoutSVGTSpan.cpp
diff --git a/Source/core/rendering/svg/RenderSVGTSpan.cpp b/Source/core/layout/svg/LayoutSVGTSpan.cpp
similarity index 89%
rename from Source/core/rendering/svg/RenderSVGTSpan.cpp
rename to Source/core/layout/svg/LayoutSVGTSpan.cpp
index 14eb18c33b63dc522b22b2cd3afa8ba5936d4b2a..0d05faf5a983997a69acc79f0434750684095ec2 100644
--- a/Source/core/rendering/svg/RenderSVGTSpan.cpp
+++ b/Source/core/layout/svg/LayoutSVGTSpan.cpp
@@ -21,18 +21,18 @@
*/
#include "config.h"
-#include "core/rendering/svg/RenderSVGTSpan.h"
+#include "core/layout/svg/LayoutSVGTSpan.h"
#include "core/layout/svg/SVGLayoutSupport.h"
namespace blink {
-RenderSVGTSpan::RenderSVGTSpan(Element* element)
+LayoutSVGTSpan::LayoutSVGTSpan(Element* element)
: LayoutSVGInline(element)
{
}
-bool RenderSVGTSpan::isChildAllowed(LayoutObject* child, const LayoutStyle&) const
+bool LayoutSVGTSpan::isChildAllowed(LayoutObject* child, const LayoutStyle&) const
{
// Always allow text (except empty textnodes and <br>).
if (child->isText())
« no previous file with comments | « Source/core/layout/svg/LayoutSVGTSpan.h ('k') | Source/core/layout/svg/SVGLayoutSupport.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698