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

Unified Diff: Source/core/svg/SVGTextPathElement.cpp

Issue 669153002: Relocate markForLayoutAndParentResourceInvalidation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Dependency reduction/possibly clearer API. Created 6 years, 2 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: Source/core/svg/SVGTextPathElement.cpp
diff --git a/Source/core/svg/SVGTextPathElement.cpp b/Source/core/svg/SVGTextPathElement.cpp
index fa5b97ac5a2d10a9f4d499d4122b076f744472c8..af82cd9c0791b8fa35ea70a1df4529d7eab5b1cc 100644
--- a/Source/core/svg/SVGTextPathElement.cpp
+++ b/Source/core/svg/SVGTextPathElement.cpp
@@ -22,7 +22,6 @@
#include "core/svg/SVGTextPathElement.h"
#include "core/XLinkNames.h"
-#include "core/rendering/svg/RenderSVGResource.h"
#include "core/rendering/svg/RenderSVGTextPath.h"
#include "core/svg/SVGDocumentExtensions.h"
@@ -104,7 +103,7 @@ void SVGTextPathElement::svgAttributeChanged(const QualifiedName& attrName)
updateRelativeLengthsInformation();
if (RenderObject* object = renderer())
- RenderSVGResource::markForLayoutAndParentResourceInvalidation(object);
+ markForLayoutAndParentResourceInvalidation(object);
}
RenderObject* SVGTextPathElement::createRenderer(RenderStyle*)

Powered by Google App Engine
This is Rietveld 408576698