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

Unified Diff: third_party/WebKit/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp

Issue 1858753003: Remove RawPtr from core/css (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: third_party/WebKit/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp
diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp b/third_party/WebKit/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp
index fe7541ddb009a12261a1b884f637b1d95c429138..52c43094e63d98b8a554b667cf0a9e050868c7a0 100644
--- a/third_party/WebKit/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp
+++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableValueTestHelperTest.cpp
@@ -53,7 +53,7 @@ protected:
TEST_F(AnimationAnimatableValueTestHelperTest, PrintTo)
{
EXPECT_THAT(
- PrintToString(AnimatableClipPathOperation::create(ShapeClipPathOperation::create(BasicShapeCircle::create().get()).get())),
+ PrintToString(AnimatableClipPathOperation::create(ShapeClipPathOperation::create(BasicShapeCircle::create()).get())),
testing::StartsWith("AnimatableClipPathOperation")
);
@@ -66,7 +66,7 @@ TEST_F(AnimationAnimatableValueTestHelperTest, PrintTo)
testing::StartsWith("AnimatableNeutral@"));
EXPECT_THAT(
- PrintToString(AnimatableShapeValue::create(ShapeValue::createShapeValue(BasicShapeCircle::create().get(), ContentBox))),
+ PrintToString(AnimatableShapeValue::create(ShapeValue::createShapeValue(BasicShapeCircle::create(), ContentBox))),
testing::StartsWith("AnimatableShapeValue@"));
RefPtr<SVGDashArray> l2 = SVGDashArray::create();
@@ -78,7 +78,7 @@ TEST_F(AnimationAnimatableValueTestHelperTest, PrintTo)
EXPECT_EQ(
::std::string("AnimatableUnknown(none)"),
- PrintToString(AnimatableUnknown::create(CSSPrimitiveValue::createIdentifier(CSSValueNone).get())));
+ PrintToString(AnimatableUnknown::create(CSSPrimitiveValue::createIdentifier(CSSValueNone))));
EXPECT_EQ(
::std::string("AnimatableVisibility(VISIBLE)"),

Powered by Google App Engine
This is Rietveld 408576698