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

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

Issue 344883007: SVG: Move/rename reference management to SVGElement (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove sed script from CL Created 6 years, 6 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/SVGElementRareData.h ('k') | Source/core/svg/SVGFEImageElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGElementRareData.cpp
diff --git a/Source/core/svg/SVGElementRareData.cpp b/Source/core/svg/SVGElementRareData.cpp
index c7a3716ce4cdb07db6653627806b3cfbcbeced72..4da1f46903d993d86471ba4e60e6e7287782d9d6 100644
--- a/Source/core/svg/SVGElementRareData.cpp
+++ b/Source/core/svg/SVGElementRareData.cpp
@@ -33,8 +33,8 @@ RenderStyle* SVGElementRareData::overrideComputedStyle(Element* element, RenderS
void SVGElementRareData::trace(Visitor* visitor)
{
#if ENABLE(OILPAN)
- visitor->trace(m_referencingElements);
- visitor->trace(m_referencedElements);
+ visitor->trace(m_outgoingReferences);
+ visitor->trace(m_incomingReferences);
visitor->trace(m_animatedSMILStyleProperties);
visitor->trace(m_elementInstances);
visitor->trace(m_correspondingElement);
« no previous file with comments | « Source/core/svg/SVGElementRareData.h ('k') | Source/core/svg/SVGFEImageElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698