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

Unified Diff: Source/core/svg/properties/SVGPropertyHelper.h

Issue 678163002: Oilpan: move SVG property hierarchy to the heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased upto r185213 Created 6 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
« no previous file with comments | « Source/core/svg/properties/SVGProperty.h ('k') | Source/core/svg/properties/SVGPropertyTearOff.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/properties/SVGPropertyHelper.h
diff --git a/Source/core/svg/properties/SVGPropertyHelper.h b/Source/core/svg/properties/SVGPropertyHelper.h
index b60d75c1e893d130f10bdcd28dd400d47e598282..aa1b1e5f5f6d3a3c732d1b9a4150d26ceb6a1034 100644
--- a/Source/core/svg/properties/SVGPropertyHelper.h
+++ b/Source/core/svg/properties/SVGPropertyHelper.h
@@ -18,14 +18,14 @@ public:
{
}
- virtual PassRefPtr<SVGPropertyBase> cloneForAnimation(const String& value) const
+ virtual PassRefPtrWillBeRawPtr<SVGPropertyBase> cloneForAnimation(const String& value) const
{
- RefPtr<Derived> property = Derived::create();
+ RefPtrWillBeRawPtr<Derived> property = Derived::create();
property->setValueAsString(value, IGNORE_EXCEPTION);
return property.release();
}
};
-}
+} // namespace blink
#endif // SVGPropertyHelper_h
« no previous file with comments | « Source/core/svg/properties/SVGProperty.h ('k') | Source/core/svg/properties/SVGPropertyTearOff.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698