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

Unified Diff: Source/core/animation/AnimationNodeTiming.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: 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/AnimationNodeTiming.cpp
diff --git a/Source/core/animation/AnimationNodeTiming.cpp b/Source/core/animation/AnimationNodeTiming.cpp
index 07624e869ad207df05a6318f3216d3ea59b51208..5e58ab55b1575a9b64900b6afe17e67cc22498c9 100644
--- a/Source/core/animation/AnimationNodeTiming.cpp
+++ b/Source/core/animation/AnimationNodeTiming.cpp
@@ -12,9 +12,9 @@
namespace blink {
-PassRefPtrWillBeRawPtr<AnimationNodeTiming> AnimationNodeTiming::create(AnimationNode* parent)
+AnimationNodeTiming* AnimationNodeTiming::create(AnimationNode* parent)
{
- return adoptRefWillBeNoop(new AnimationNodeTiming(parent));
+ return new AnimationNodeTiming(parent);
}
AnimationNodeTiming::AnimationNodeTiming(AnimationNode* parent)

Powered by Google App Engine
This is Rietveld 408576698