| Index: third_party/WebKit/Source/core/animation/AnimationTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/AnimationTest.cpp b/third_party/WebKit/Source/core/animation/AnimationTest.cpp
|
| index 78609305bb923ec44a4c184b34d875514f5eac5c..12e9963153bb6399fa55a6582504eb32ac99b791 100644
|
| --- a/third_party/WebKit/Source/core/animation/AnimationTest.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/AnimationTest.cpp
|
| @@ -84,7 +84,7 @@ protected:
|
| return animation->update(TimingUpdateForAnimationFrame);
|
| }
|
|
|
| - RefPtrWillBePersistent<Document> document;
|
| + Persistent<Document> document;
|
| Persistent<AnimationTimeline> timeline;
|
| Persistent<Animation> animation;
|
| TrackExceptionState exceptionState;
|
| @@ -735,7 +735,7 @@ TEST_F(AnimationAnimationTest, TimeToNextEffectSimpleCancelledBeforeStart)
|
|
|
| TEST_F(AnimationAnimationTest, AttachedAnimations)
|
| {
|
| - RefPtrWillBePersistent<Element> element = document->createElement("foo", ASSERT_NO_EXCEPTION);
|
| + Persistent<Element> element = document->createElement("foo", ASSERT_NO_EXCEPTION);
|
|
|
| Timing timing;
|
| KeyframeEffect* keyframeEffect = KeyframeEffect::create(element.get(), nullptr, timing);
|
|
|