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

Unified Diff: Source/core/animation/AnimatableFilterOperations.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/AnimatableFilterOperations.h
diff --git a/Source/core/animation/AnimatableFilterOperations.h b/Source/core/animation/AnimatableFilterOperations.h
index a67264f9aa6f86ba216ecc00dd4ccd7e71e6bd0e..1e738d17e2f226c484d3f2b90a13cd3edcf20260 100644
--- a/Source/core/animation/AnimatableFilterOperations.h
+++ b/Source/core/animation/AnimatableFilterOperations.h
@@ -39,15 +39,17 @@ namespace WebCore {
class AnimatableFilterOperations FINAL : public AnimatableValue {
public:
virtual ~AnimatableFilterOperations() { }
- static PassRefPtr<AnimatableFilterOperations> create(const FilterOperations& operations)
+ static PassRefPtrWillBeRawPtr<AnimatableFilterOperations> create(const FilterOperations& operations)
{
- return adoptRef(new AnimatableFilterOperations(operations));
+ return adoptRefWillBeNoop(new AnimatableFilterOperations(operations));
}
const FilterOperations& operations() const { return m_operations; }
+ 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;
virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const OVERRIDE;
private:
« no previous file with comments | « Source/core/animation/AnimatableDoubleTest.cpp ('k') | Source/core/animation/AnimatableFilterOperations.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698