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

Unified Diff: Source/core/animation/animatable/AnimatableNeutral.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: 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
Index: Source/core/animation/animatable/AnimatableNeutral.h
diff --git a/Source/core/animation/animatable/AnimatableNeutral.h b/Source/core/animation/animatable/AnimatableNeutral.h
index cca9f77bac2c53587d7e8abf24e570b301705f80..22f7e41b86ed8ef123d546da4e942af0bb5cae46 100644
--- a/Source/core/animation/animatable/AnimatableNeutral.h
+++ b/Source/core/animation/animatable/AnimatableNeutral.h
@@ -42,8 +42,8 @@ public:
DEFINE_INLINE_VIRTUAL_TRACE() { AnimatableValue::trace(visitor); }
protected:
- static PassRefPtrWillBeRawPtr<AnimatableNeutral> create() { return adoptRefWillBeNoop(new AnimatableNeutral()); }
- PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue* value, double fraction) const override
+ static AnimatableNeutral* create() { return new AnimatableNeutral; }
+ AnimatableValue* interpolateTo(const AnimatableValue* value, double fraction) const override
{
ASSERT_NOT_REACHED();
return nullptr;
« no previous file with comments | « Source/core/animation/animatable/AnimatableLengthTest.cpp ('k') | Source/core/animation/animatable/AnimatableRepeatable.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698