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

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

Issue 1164573002: CSSValue Immediates: Change CSSValue to an object instead of a pointer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 5 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..d79c3976073e150e08624a6a8c6262c6ce51d4dd 100644
--- a/Source/core/animation/animatable/AnimatableValueTestHelper.cpp
+++ b/Source/core/animation/animatable/AnimatableValueTestHelper.cpp
@@ -53,7 +53,7 @@ void PrintTo(const AnimatableColor& animColor, ::std::ostream* os)
void PrintTo(const AnimatableImage& animImage, ::std::ostream* os)
{
- PrintTo(*(animImage.toCSSValue()), os, "AnimatableImage");
+ PrintTo(animImage.toCSSValue(), os, "AnimatableImage");
}
void PrintTo(const AnimatableNeutral& animValue, ::std::ostream* os)
@@ -148,7 +148,7 @@ void PrintTo(const AnimatableTransform& animTransform, ::std::ostream* os)
void PrintTo(const AnimatableUnknown& animUnknown, ::std::ostream* os)
{
- PrintTo(*(animUnknown.toCSSValue().get()), os, "AnimatableUnknown");
+ PrintTo(animUnknown.toCSSValue(), os, "AnimatableUnknown");
}
void PrintTo(const AnimatableVisibility& animVisibility, ::std::ostream* os)

Powered by Google App Engine
This is Rietveld 408576698