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

Unified Diff: Source/core/animation/animatable/AnimatableTransform.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: Resize expect size of Persistent Created 5 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
Index: Source/core/animation/animatable/AnimatableTransform.h
diff --git a/Source/core/animation/animatable/AnimatableTransform.h b/Source/core/animation/animatable/AnimatableTransform.h
index 76475385776645c34ce894d4cc95c6dd9f2d4774..aae98846427e9b12fc8b57c5a58eb7709e5c06fb 100644
--- a/Source/core/animation/animatable/AnimatableTransform.h
+++ b/Source/core/animation/animatable/AnimatableTransform.h
@@ -40,7 +40,7 @@ namespace blink {
class CORE_EXPORT AnimatableTransform final : public AnimatableValue {
public:
virtual ~AnimatableTransform() { }
- static PassRefPtrWillBeRawPtr<AnimatableTransform> create(const TransformOperations&);
+ static AnimatableTransform* create(const TransformOperations&);
const TransformOperations& transformOperations() const
{
return m_transform;
@@ -49,7 +49,7 @@ public:
DEFINE_INLINE_VIRTUAL_TRACE() { AnimatableValue::trace(visitor); }
protected:
- virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
+ virtual AnimatableValue* interpolateTo(const AnimatableValue*, double fraction) const override;
private:
explicit AnimatableTransform(const TransformOperations& transform)

Powered by Google App Engine
This is Rietveld 408576698