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

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

Issue 2750293003: Delete unused AnimatableValue code (Closed)
Patch Set: Fix unit tests Created 3 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: third_party/WebKit/Source/core/animation/animatable/AnimatableImage.h
diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableImage.h b/third_party/WebKit/Source/core/animation/animatable/AnimatableImage.h
index 6628c4f98e8351e17738688218437f28bc1e159d..ba40faa94fe6d4eb91f7b24fa590234e992c48ef 100644
--- a/third_party/WebKit/Source/core/animation/animatable/AnimatableImage.h
+++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableImage.h
@@ -32,7 +32,6 @@
#define AnimatableImage_h
#include "core/animation/animatable/AnimatableValue.h"
-#include "core/css/CSSCrossfadeValue.h"
#include "core/style/StyleImage.h"
namespace blink {
@@ -43,12 +42,6 @@ class AnimatableImage final : public AnimatableValue {
static PassRefPtr<AnimatableImage> create(CSSValue* value) {
return adoptRef(new AnimatableImage(value));
}
- CSSValue* toCSSValue() const { return m_value.get(); }
-
- protected:
- PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue*,
- double fraction) const override;
- bool usesDefaultInterpolationWith(const AnimatableValue*) const override;
private:
AnimatableImage(CSSValue* value) : m_value(value) { DCHECK(m_value.get()); }

Powered by Google App Engine
This is Rietveld 408576698