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

Unified Diff: Source/core/animation/animatable/AnimatableFilterOperations.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/AnimatableFilterOperations.h
diff --git a/Source/core/animation/animatable/AnimatableFilterOperations.h b/Source/core/animation/animatable/AnimatableFilterOperations.h
index 073155a23bb5e394b095a4a1c535fbb719a8702f..d1d8d949d603a2eb931f12b7fbd48cbf9624295a 100644
--- a/Source/core/animation/animatable/AnimatableFilterOperations.h
+++ b/Source/core/animation/animatable/AnimatableFilterOperations.h
@@ -38,9 +38,9 @@ namespace blink {
class AnimatableFilterOperations final : public AnimatableValue {
public:
- static PassRefPtrWillBeRawPtr<AnimatableFilterOperations> create(const FilterOperations& operations)
+ static AnimatableFilterOperations* create(const FilterOperations& operations)
{
- return adoptRefWillBeNoop(new AnimatableFilterOperations(operations));
+ return new AnimatableFilterOperations(operations);
}
~AnimatableFilterOperations() override { }
@@ -49,7 +49,7 @@ public:
const FilterOperations& operations() const { return m_operations; }
protected:
- PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
+ AnimatableValue* interpolateTo(const AnimatableValue*, double fraction) const override;
bool usesDefaultInterpolationWith(const AnimatableValue*) const override;
private:

Powered by Google App Engine
This is Rietveld 408576698