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

Unified Diff: third_party/WebKit/Source/core/animation/AnimationTest.cpp

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/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);

Powered by Google App Engine
This is Rietveld 408576698