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

Unified Diff: Source/core/animation/animatable/AnimatableValueTestHelperTest.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: Resize expect size of Persistent 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
Index: Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp
diff --git a/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp b/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp
index ec1a3a3caa3f376b613eecb5c8e86afa150b5521..84f22ee22921c162aca2a5e041a1002b0a6a0443 100644
--- a/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp
+++ b/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp
@@ -49,9 +49,9 @@ namespace {
class AnimationAnimatableValueTestHelperTest : public ::testing::Test {
protected:
- ::std::string PrintToString(PassRefPtrWillBeRawPtr<AnimatableValue> animValue)
+ ::std::string PrintToString(AnimatableValue* animValue)
{
- return ::testing::PrintToString(*animValue.get());
+ return ::testing::PrintToString(*animValue);
}
};

Powered by Google App Engine
This is Rietveld 408576698