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

Unified Diff: Source/core/animation/AnimatableClipPathOperation.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
« no previous file with comments | « no previous file | Source/core/animation/AnimatableClipPathOperation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/AnimatableClipPathOperation.h
diff --git a/Source/core/animation/AnimatableClipPathOperation.h b/Source/core/animation/AnimatableClipPathOperation.h
index 5d798c2ef5ca34c4b2c852c4a9cff2212b21d88d..2cffa78505295539a4ea8801e56b5f7fc9e128c7 100644
--- a/Source/core/animation/AnimatableClipPathOperation.h
+++ b/Source/core/animation/AnimatableClipPathOperation.h
@@ -39,14 +39,16 @@ namespace WebCore {
class AnimatableClipPathOperation FINAL : public AnimatableValue {
public:
virtual ~AnimatableClipPathOperation() { }
- static PassRefPtr<AnimatableClipPathOperation> create(ClipPathOperation* operation)
+ static PassRefPtrWillBeRawPtr<AnimatableClipPathOperation> create(ClipPathOperation* operation)
{
- return adoptRef(new AnimatableClipPathOperation(operation));
+ return adoptRefWillBeNoop(new AnimatableClipPathOperation(operation));
}
ClipPathOperation* clipPathOperation() const { return m_operation.get(); }
+ virtual void trace(Visitor*) OVERRIDE { }
+
protected:
- virtual PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
+ virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const OVERRIDE;
private:
« no previous file with comments | « no previous file | Source/core/animation/AnimatableClipPathOperation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698