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

Unified Diff: Source/core/paint/SVGPaintContext.h

Issue 1149903004: Oilpan: Validate pointers stored in Member (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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/editing/iterators/TextIterator.cpp ('k') | Source/core/svg/SVGAnimatedTypeAnimator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/SVGPaintContext.h
diff --git a/Source/core/paint/SVGPaintContext.h b/Source/core/paint/SVGPaintContext.h
index 6fe1b207ef0026233c35e9e9a61a2b03a6486c18..50babac7f7b9a18d25a5ae273f85334c43f63112 100644
--- a/Source/core/paint/SVGPaintContext.h
+++ b/Source/core/paint/SVGPaintContext.h
@@ -87,10 +87,10 @@ private:
LayoutObject* m_object;
PaintInfo m_paintInfo;
const PaintInfo* m_originalPaintInfo;
- RawPtrWillBeMember<LayoutSVGResourceFilter> m_filter;
- RawPtrWillBeMember<LayoutSVGResourceClipper> m_clipper;
+ LayoutSVGResourceFilter* m_filter;
+ LayoutSVGResourceClipper* m_clipper;
SVGClipPainter::ClipperState m_clipperState;
- RawPtrWillBeMember<LayoutSVGResourceMasker> m_masker;
+ LayoutSVGResourceMasker* m_masker;
OwnPtr<FloatClipRecorder> m_clipRecorder;
OwnPtr<CompositingRecorder> m_compositingRecorder;
OwnPtr<ClipPathRecorder> m_clipPathRecorder;
« no previous file with comments | « Source/core/editing/iterators/TextIterator.cpp ('k') | Source/core/svg/SVGAnimatedTypeAnimator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698