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

Unified Diff: third_party/WebKit/Source/core/animation/animatable/AnimatableFilterOperations.h

Issue 2893313004: Remove unused AnimatableValue types (Closed)
Patch Set: Created 3 years, 7 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: third_party/WebKit/Source/core/animation/animatable/AnimatableFilterOperations.h
diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableFilterOperations.h b/third_party/WebKit/Source/core/animation/animatable/AnimatableFilterOperations.h
index dae1e273d321bf9213c7aa07c94193aaadb5140c..929dd83584f89df656f2cbdb9a870131720d0045 100644
--- a/third_party/WebKit/Source/core/animation/animatable/AnimatableFilterOperations.h
+++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableFilterOperations.h
@@ -52,13 +52,11 @@ class AnimatableFilterOperations final : public AnimatableValue {
protected:
PassRefPtr<AnimatableValue> InterpolateTo(const AnimatableValue*,
double fraction) const override;
- bool UsesDefaultInterpolationWith(const AnimatableValue*) const override;
private:
AnimatableFilterOperations(const FilterOperations& operations)
: operation_wrapper_(FilterOperationsWrapper::Create(operations)) {}
- bool EqualTo(const AnimatableValue*) const override;
AnimatableType GetType() const override { return kTypeFilterOperations; }
Persistent<FilterOperationsWrapper> operation_wrapper_;

Powered by Google App Engine
This is Rietveld 408576698