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

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: 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/AnimatableTransform.h
diff --git a/Source/core/animation/animatable/AnimatableTransform.h b/Source/core/animation/animatable/AnimatableTransform.h
index 3e8ebfca3e5657c6ad9e9e8ab1f0c8ad6b3f72d4..15197cd0b82a7372bd0f419b1a3e8a99b7996fc1 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:
~AnimatableTransform() override { }
- 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:
- PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
+ AnimatableValue* interpolateTo(const AnimatableValue*, double fraction) const override;
private:
explicit AnimatableTransform(const TransformOperations& transform)
@@ -66,4 +66,3 @@ DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableTransform, isTransform());
} // namespace blink
#endif // AnimatableTransform_h
-

Powered by Google App Engine
This is Rietveld 408576698