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

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

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.h
diff --git a/Source/core/animation/animatable/AnimatableTransform.h b/Source/core/animation/animatable/AnimatableTransform.h
index 3e8ebfca3e5657c6ad9e9e8ab1f0c8ad6b3f72d4..c62f8c0a3a75572e54ab992015550d884a6bd3e0 100644
--- a/Source/core/animation/animatable/AnimatableTransform.h
+++ b/Source/core/animation/animatable/AnimatableTransform.h
@@ -40,16 +40,14 @@ namespace blink {
class CORE_EXPORT AnimatableTransform final : public AnimatableValue {
public:
~AnimatableTransform() override { }
- static PassRefPtrWillBeRawPtr<AnimatableTransform> create(const TransformOperations&);
+ static PassRefPtr<AnimatableTransform> create(const TransformOperations&);
const TransformOperations& transformOperations() const
{
return m_transform;
}
- DEFINE_INLINE_VIRTUAL_TRACE() { AnimatableValue::trace(visitor); }
-
protected:
- PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
+ PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
private:
explicit AnimatableTransform(const TransformOperations& transform)

Powered by Google App Engine
This is Rietveld 408576698