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

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

Issue 204743002: Oilpan: Move AnimatableValue's hierarchy to oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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/AnimatableTransform.h
diff --git a/Source/core/animation/AnimatableTransform.h b/Source/core/animation/AnimatableTransform.h
index 2733bdf8effc8c0f1408e1a0469d088a5b26f39e..6450a6d104f09ec6030cc997657da8c2ae2a354d 100644
--- a/Source/core/animation/AnimatableTransform.h
+++ b/Source/core/animation/AnimatableTransform.h
@@ -39,15 +39,17 @@ namespace WebCore {
class AnimatableTransform FINAL : public AnimatableValue {
public:
virtual ~AnimatableTransform() { }
- static PassRefPtr<AnimatableTransform> create(const TransformOperations&);
+ static PassRefPtrWillBeRawPtr<AnimatableTransform> create(const TransformOperations&);
const TransformOperations& transformOperations() const
{
return m_transform;
}
+ virtual void trace(Visitor*) OVERRIDE { }
+
protected:
- virtual PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
- virtual PassRefPtr<AnimatableValue> addWith(const AnimatableValue*) const OVERRIDE;
+ virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
+ virtual PassRefPtrWillBeRawPtr<AnimatableValue> addWith(const AnimatableValue*) const OVERRIDE;
private:
explicit AnimatableTransform(const TransformOperations& transform)
« no previous file with comments | « Source/core/animation/AnimatableStrokeDasharrayListTest.cpp ('k') | Source/core/animation/AnimatableTransform.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698