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

Unified Diff: third_party/WebKit/Source/core/animation/CompositorPendingAnimations.h

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, 10 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/CompositorPendingAnimations.h
diff --git a/third_party/WebKit/Source/core/animation/CompositorPendingAnimations.h b/third_party/WebKit/Source/core/animation/CompositorPendingAnimations.h
index 65520c232834971a4579635d496e55fb656f9824..b8d15714fc114a1eab4618dfc4c2fea5700e8cbb 100644
--- a/third_party/WebKit/Source/core/animation/CompositorPendingAnimations.h
+++ b/third_party/WebKit/Source/core/animation/CompositorPendingAnimations.h
@@ -64,8 +64,8 @@ public:
private:
void timerFired(Timer<CompositorPendingAnimations>*) { update(false); }
- PersistentHeapVectorWillBeHeapVector<Member<Animation>> m_pending;
- PersistentHeapVectorWillBeHeapVector<Member<Animation>> m_waitingForCompositorAnimationStart;
+ HeapVector<Member<Animation>> m_pending;
+ HeapVector<Member<Animation>> m_waitingForCompositorAnimationStart;
Timer<CompositorPendingAnimations> m_timer;
int m_compositorGroup;
};

Powered by Google App Engine
This is Rietveld 408576698