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

Unified Diff: Source/core/animation/AnimationEffectTiming.cpp

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: Rebase Created 5 years, 4 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/AnimationEffectTiming.h ('k') | Source/core/animation/AnimationEffectTiming.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/AnimationEffectTiming.cpp
diff --git a/Source/core/animation/AnimationEffectTiming.cpp b/Source/core/animation/AnimationEffectTiming.cpp
index 6f9fd6f5f4188c6bda5efb2a8bdde10190b9a210..d07c5b90bed21b89585229ed6005a9a68922c9e2 100644
--- a/Source/core/animation/AnimationEffectTiming.cpp
+++ b/Source/core/animation/AnimationEffectTiming.cpp
@@ -12,9 +12,9 @@
namespace blink {
-PassRefPtrWillBeRawPtr<AnimationEffectTiming> AnimationEffectTiming::create(AnimationEffect* parent)
+AnimationEffectTiming* AnimationEffectTiming::create(AnimationEffect* parent)
{
- return adoptRefWillBeNoop(new AnimationEffectTiming(parent));
+ return new AnimationEffectTiming(parent);
}
AnimationEffectTiming::AnimationEffectTiming(AnimationEffect* parent)
« no previous file with comments | « Source/core/animation/AnimationEffectTiming.h ('k') | Source/core/animation/AnimationEffectTiming.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698