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

Unified Diff: Source/core/animation/AnimationPlayer.h

Issue 1120003002: [Oilpan] Migrate most classes under core/animations to Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Build fix Created 5 years, 8 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: Source/core/animation/AnimationPlayer.h
diff --git a/Source/core/animation/AnimationPlayer.h b/Source/core/animation/AnimationPlayer.h
index 784e87fc8bbe34d3b59c7968360d198df568bc08..3e13297ece8100c0941f0648cdb19b683c35efe9 100644
--- a/Source/core/animation/AnimationPlayer.h
+++ b/Source/core/animation/AnimationPlayer.h
@@ -213,8 +213,8 @@ private:
PersistentWillBeMember<AnimationPlayerPromise> m_finishedPromise;
PersistentWillBeMember<AnimationPlayerPromise> m_readyPromise;
- RefPtrWillBeMember<AnimationNode> m_content;
- RawPtrWillBeMember<AnimationTimeline> m_timeline;
+ PersistentWillBeMember<AnimationNode> m_content;
+ PersistentWillBeMember<AnimationTimeline> m_timeline;
// Reflects all pausing, including via pauseForTesting().
bool m_paused;
bool m_held;

Powered by Google App Engine
This is Rietveld 408576698