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

Unified Diff: third_party/WebKit/Source/core/svg/SVGElementRareData.h

Issue 2484153003: Use an SVGElementProxy in ReferenceClipPathOperation (Closed)
Patch Set: Rebase; fix comments; findElement Created 4 years, 1 month 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: third_party/WebKit/Source/core/svg/SVGElementRareData.h
diff --git a/third_party/WebKit/Source/core/svg/SVGElementRareData.h b/third_party/WebKit/Source/core/svg/SVGElementRareData.h
index c2549c90b31f80b8e149dbeca7645b6afe247bc6..e8a8eddf32b7c8de67495c6a84a8f5ba2bfc7083 100644
--- a/third_party/WebKit/Source/core/svg/SVGElementRareData.h
+++ b/third_party/WebKit/Source/core/svg/SVGElementRareData.h
@@ -31,6 +31,7 @@ namespace blink {
class CSSCursorImageValue;
class SVGCursorElement;
+class SVGElementProxySet;
class SVGElementRareData
: public GarbageCollectedFinalized<SVGElementRareData> {
@@ -56,6 +57,8 @@ class SVGElementRareData
return m_incomingReferences;
}
+ SVGElementProxySet& ensureElementProxySet();
+
HeapHashSet<WeakMember<SVGElement>>& elementInstances() {
return m_elementInstances;
}
@@ -125,6 +128,7 @@ class SVGElementRareData
HeapHashSet<WeakMember<SVGElement>> m_elementInstances;
WeakMember<SVGCursorElement> m_cursorElement;
WeakMember<const CSSCursorImageValue> m_cursorImageValue;
+ Member<SVGElementProxySet> m_elementProxySet;
Member<SVGElement> m_correspondingElement;
bool m_instancesUpdatesBlocked : 1;
bool m_useOverrideComputedStyle : 1;
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGElementProxy.cpp ('k') | third_party/WebKit/Source/core/svg/SVGElementRareData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698