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

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

Issue 331583002: Oilpan: |SVGViewSpec::m_contextElement| should be a member. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | « no previous file | Source/core/svg/SVGViewSpec.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGViewSpec.h
diff --git a/Source/core/svg/SVGViewSpec.h b/Source/core/svg/SVGViewSpec.h
index c9dabb76f9b1091f15fb725221fe52202b974e7d..ed53e47b0e693cd2532d4651bf3fae5fe72a2f35 100644
--- a/Source/core/svg/SVGViewSpec.h
+++ b/Source/core/svg/SVGViewSpec.h
@@ -58,7 +58,6 @@ public:
void setZoomAndPan(unsigned short value, ExceptionState&);
void trace(Visitor*);
- void clearWeakMembers(Visitor*);
SVGSVGElement* contextElement() { return m_contextElement.get(); }
@@ -68,7 +67,7 @@ private:
template<typename CharType>
bool parseViewSpecInternal(const CharType* ptr, const CharType* end);
- RawPtrWillBeWeakMember<SVGSVGElement> m_contextElement;
+ RawPtrWillBeMember<SVGSVGElement> m_contextElement;
RefPtr<SVGAnimatedTransformList> m_transform;
String m_viewTargetString;
};
« no previous file with comments | « no previous file | Source/core/svg/SVGViewSpec.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698