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

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

Issue 21042009: [SVG2] Merge SVGStyledElement into SVGElement (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Build fix Created 7 years, 5 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/SVGTRefElement.cpp
diff --git a/Source/core/svg/SVGTRefElement.cpp b/Source/core/svg/SVGTRefElement.cpp
index 4e69339e7a9997e6c73b0d0ff8c81b064141eef7..2d5f64fd081038d1e9613e878bb82cb27035507e 100644
--- a/Source/core/svg/SVGTRefElement.cpp
+++ b/Source/core/svg/SVGTRefElement.cpp
@@ -270,7 +270,7 @@ void SVGTRefElement::buildPendingResource()
Node::InsertionNotificationRequest SVGTRefElement::insertedInto(ContainerNode* rootParent)
{
- SVGStyledElement::insertedInto(rootParent);
+ SVGElement::insertedInto(rootParent);
if (rootParent->inDocument())
buildPendingResource();
return InsertionDone;
@@ -278,7 +278,7 @@ Node::InsertionNotificationRequest SVGTRefElement::insertedInto(ContainerNode* r
void SVGTRefElement::removedFrom(ContainerNode* rootParent)
{
- SVGStyledElement::removedFrom(rootParent);
+ SVGElement::removedFrom(rootParent);
if (rootParent->inDocument())
m_targetListener->detach();
}

Powered by Google App Engine
This is Rietveld 408576698