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

Unified Diff: Source/core/animation/animatable/AnimatableTransform.cpp

Issue 1276183004: Oilpan: Unship oilpan from temporary animation objects (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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/AnimatableTransform.cpp
diff --git a/Source/core/animation/animatable/AnimatableTransform.cpp b/Source/core/animation/animatable/AnimatableTransform.cpp
index c063ccf44a7c25b40be9d4f56996f9a39e4337c6..d6e6a0a73d81ff5cf4bbef148a677df4d7c94a9a 100644
--- a/Source/core/animation/animatable/AnimatableTransform.cpp
+++ b/Source/core/animation/animatable/AnimatableTransform.cpp
@@ -33,12 +33,12 @@
namespace blink {
-PassRefPtrWillBeRawPtr<AnimatableTransform> AnimatableTransform::create(const TransformOperations& transform)
+PassRefPtr<AnimatableTransform> AnimatableTransform::create(const TransformOperations& transform)
{
- return adoptRefWillBeNoop(new AnimatableTransform(transform));
+ return adoptRef(new AnimatableTransform(transform));
}
-PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableTransform::interpolateTo(const AnimatableValue* value, double fraction) const
+PassRefPtr<AnimatableValue> AnimatableTransform::interpolateTo(const AnimatableValue* value, double fraction) const
{
const AnimatableTransform* transform = toAnimatableTransform(value);
return AnimatableTransform::create(transform->m_transform.blend(m_transform, fraction));

Powered by Google App Engine
This is Rietveld 408576698