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

Unified Diff: Source/core/animation/AnimatableLength.h

Issue 228063006: Remove special cases for viewport units, and add tests for viewport units in calc(). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 8 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/AnimatableLength.h
diff --git a/Source/core/animation/AnimatableLength.h b/Source/core/animation/AnimatableLength.h
index d45bb365cb2f96d4688f2e4088b85645a39853ab..90e40a3c78ee8d1c2e8f7ff879082b6b4821fd2e 100644
--- a/Source/core/animation/AnimatableLength.h
+++ b/Source/core/animation/AnimatableLength.h
@@ -67,7 +67,6 @@ public:
protected:
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:
AnimatableLength(double number, CSSPrimitiveValue::LengthUnitType unitType, CSSPrimitiveValue* cssPrimitiveValue)
@@ -91,14 +90,6 @@ private:
static bool isCalc(CSSPrimitiveValue::LengthUnitType type) { return type == CSSPrimitiveValue::UnitTypeCalc; }
bool isCalc() const { return isCalc(m_lengthUnitType); }
- bool isViewportUnit() const
- {
- return m_lengthUnitType == CSSPrimitiveValue::UnitTypeViewportWidth
- || m_lengthUnitType == CSSPrimitiveValue::UnitTypeViewportHeight
- || m_lengthUnitType == CSSPrimitiveValue::UnitTypeViewportMin
- || m_lengthUnitType == CSSPrimitiveValue::UnitTypeViewportMax;
- }
-
static PassRefPtrWillBeRawPtr<AnimatableLength> create(const AnimatableLength* leftAddend, const AnimatableLength* rightAddend)
{
ASSERT(leftAddend && rightAddend);

Powered by Google App Engine
This is Rietveld 408576698