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

Unified Diff: third_party/WebKit/Source/core/animation/CompositorAnimationsTest.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/CompositorAnimationsTest.cpp
diff --git a/third_party/WebKit/Source/core/animation/CompositorAnimationsTest.cpp b/third_party/WebKit/Source/core/animation/CompositorAnimationsTest.cpp
index de66475bd575d2b8d29863da9f1ba8cc2ba9f842..70689b5a4665aae097dea1c71f16fa7f24be0400 100644
--- a/third_party/WebKit/Source/core/animation/CompositorAnimationsTest.cpp
+++ b/third_party/WebKit/Source/core/animation/CompositorAnimationsTest.cpp
@@ -79,8 +79,8 @@ protected:
OwnPtr<AnimatableValueKeyframeVector> m_keyframeVector5;
Persistent<AnimatableValueKeyframeEffectModel> m_keyframeAnimationEffect5;
- RefPtrWillBePersistent<Document> m_document;
- RefPtrWillBePersistent<Element> m_element;
+ Persistent<Document> m_document;
+ Persistent<Element> m_element;
Persistent<AnimationTimeline> m_timeline;
OwnPtr<DummyPageHolder> m_pageHolder;
CompositorFactoryMock* m_mockCompositorFactory;
@@ -1182,7 +1182,7 @@ TEST_F(AnimationCompositorAnimationsTest, createSimpleOpacityAnimationWithTiming
TEST_F(AnimationCompositorAnimationsTest, CancelIncompatibleCompositorAnimations)
{
- RefPtrWillBePersistent<Element> element = m_document->createElement("shared", ASSERT_NO_EXCEPTION);
+ Persistent<Element> element = m_document->createElement("shared", ASSERT_NO_EXCEPTION);
LayoutObjectProxy* layoutObject = LayoutObjectProxy::create(element.get());
element->setLayoutObject(layoutObject);

Powered by Google App Engine
This is Rietveld 408576698