| 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 1fb076106da770bf926c1e1cdecb51c8ab93329b..5a8e97fdc736b85ea4a9661b18884c5b4ff38492 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;
 | 
| @@ -727,7 +727,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);
 | 
| 
 |