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

Unified Diff: Source/core/animation/animatable/AnimatableValueTestHelper.cpp

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
Index: Source/core/animation/animatable/AnimatableValueTestHelper.cpp
diff --git a/Source/core/animation/animatable/AnimatableValueTestHelper.cpp b/Source/core/animation/animatable/AnimatableValueTestHelper.cpp
index d58362ba09d345cea38fb5d34906a626d8bb57c9..5b02a045c3d8f9f2e1bc9c0b7d0fe4492121ea12 100644
--- a/Source/core/animation/animatable/AnimatableValueTestHelper.cpp
+++ b/Source/core/animation/animatable/AnimatableValueTestHelper.cpp
@@ -88,7 +88,7 @@ void PrintTo(const AnimatableShapeValue& animValue, ::std::ostream* os)
void PrintTo(const AnimatableStrokeDasharrayList& animValue, ::std::ostream* os)
{
*os << "AnimatableStrokeDasharrayList(";
- RefPtr<SVGLengthList> list = animValue.toSVGLengthList();
+ RefPtrWillBeRawPtr<SVGLengthList> list = animValue.toSVGLengthList();
size_t length = list->length();
for (size_t i = 0; i < length; ++i) {
*os << list->at(i)->valueAsString().utf8().data();

Powered by Google App Engine
This is Rietveld 408576698