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

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

Issue 1120003002: [Oilpan] Migrate most classes under core/animations to Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 4 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
Index: Source/core/animation/animatable/AnimatableValueTestHelper.cpp
diff --git a/Source/core/animation/animatable/AnimatableValueTestHelper.cpp b/Source/core/animation/animatable/AnimatableValueTestHelper.cpp
index add8e2419bfb44237f80ea862b7a19965f57b265..c0b8d859ef1bdbf184c911db85a8365a6f9ab1f4 100644
--- a/Source/core/animation/animatable/AnimatableValueTestHelper.cpp
+++ b/Source/core/animation/animatable/AnimatableValueTestHelper.cpp
@@ -65,8 +65,8 @@ void PrintTo(const AnimatableRepeatable& animValue, ::std::ostream* os)
{
*os << "AnimatableRepeatable(";
- const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue>> v = animValue.values();
- for (WillBeHeapVector<RefPtrWillBeMember<AnimatableValue>>::const_iterator it = v.begin(); it != v.end(); ++it) {
+ const HeapVector<Member<AnimatableValue>> v = animValue.values();
+ for (HeapVector<Member<AnimatableValue>>::const_iterator it = v.begin(); it != v.end(); ++it) {
PrintTo(*(it->get()), os);
if (it+1 != v.end())
*os << ", ";

Powered by Google App Engine
This is Rietveld 408576698