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

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: Rebase on master 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
« no previous file with comments | « Source/core/svg/SVGSymbolElement.idl ('k') | Source/core/svg/SVGTests.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGTRefElement.cpp
diff --git a/Source/core/svg/SVGTRefElement.cpp b/Source/core/svg/SVGTRefElement.cpp
index a151ea7525b8eaed5b0de66711e21fef02b369f7..8dfa40f2ba07603a21b828641db023e9246965e4 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();
}
« no previous file with comments | « Source/core/svg/SVGSymbolElement.idl ('k') | Source/core/svg/SVGTests.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698