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

Unified Diff: Source/core/svg/SVGPathSegList.h

Issue 1328223002: Avoid a SVG property list-induced leak (Oilpan). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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/SVGPathSeg.cpp ('k') | Source/core/svg/SVGPathSegList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGPathSegList.h
diff --git a/Source/core/svg/SVGPathSegList.h b/Source/core/svg/SVGPathSegList.h
index fc3dbf63eeb79bf3e225627a0f2593822010d32e..cb674184d2314913ce0849d6c6cd622757563633 100644
--- a/Source/core/svg/SVGPathSegList.h
+++ b/Source/core/svg/SVGPathSegList.h
@@ -165,7 +165,8 @@ private:
//
// SVGPathSegList is either owned by SVGAnimatedPath or SVGPathSegListTearOff.
// Both keep |contextElement| alive, so this ptr is always valid.
- RawPtrWillBeMember<SVGPathElement> m_contextElement;
+ GC_PLUGIN_IGNORE("528275")
+ SVGPathElement* m_contextElement;
mutable OwnPtr<SVGPathByteStream> m_byteStream;
bool m_listSyncedToByteStream;
« no previous file with comments | « Source/core/svg/SVGPathSeg.cpp ('k') | Source/core/svg/SVGPathSegList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698