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

Unified Diff: Source/core/animation/css/TransitionTimeline.cpp

Issue 225073004: Oilpan: Completely move core/animations/ to oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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
« no previous file with comments | « Source/core/animation/css/TransitionTimeline.h ('k') | Source/core/dom/Document.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/css/TransitionTimeline.cpp
diff --git a/Source/core/animation/css/TransitionTimeline.cpp b/Source/core/animation/css/TransitionTimeline.cpp
index 9680f981723d499afc41b8adb607036277abb00e..4f84894c0e5214f04ac8c2ed01b516b7e3078fec 100644
--- a/Source/core/animation/css/TransitionTimeline.cpp
+++ b/Source/core/animation/css/TransitionTimeline.cpp
@@ -36,12 +36,12 @@
namespace WebCore {
-PassRefPtr<TransitionTimeline> TransitionTimeline::create(Document* document, PassOwnPtr<PlatformTiming> timing)
+PassRefPtrWillBeRawPtr<TransitionTimeline> TransitionTimeline::create(Document* document, PassOwnPtrWillBeRawPtr<PlatformTiming> timing)
{
- return adoptRef(new TransitionTimeline(document, timing));
+ return adoptRefWillBeNoop(new TransitionTimeline(document, timing));
}
-TransitionTimeline::TransitionTimeline(Document* document, PassOwnPtr<PlatformTiming> timing)
+TransitionTimeline::TransitionTimeline(Document* document, PassOwnPtrWillBeRawPtr<PlatformTiming> timing)
: DocumentTimeline(document, timing)
{
setZeroTime(document->animationClock().currentTime());
« no previous file with comments | « Source/core/animation/css/TransitionTimeline.h ('k') | Source/core/dom/Document.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698