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

Unified Diff: sky/engine/core/animation/DeferredLegacyStyleInterpolation.cpp

Issue 1229273004: Remove Animations and Transitions. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 5 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: sky/engine/core/animation/DeferredLegacyStyleInterpolation.cpp
diff --git a/sky/engine/core/animation/DeferredLegacyStyleInterpolation.cpp b/sky/engine/core/animation/DeferredLegacyStyleInterpolation.cpp
deleted file mode 100644
index 0c00b6f5e99b216eb41deeffa8c8f6fa1f5894bf..0000000000000000000000000000000000000000
--- a/sky/engine/core/animation/DeferredLegacyStyleInterpolation.cpp
+++ /dev/null
@@ -1,123 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "sky/engine/core/animation/DeferredLegacyStyleInterpolation.h"
-
-#include "sky/engine/core/animation/LegacyStyleInterpolation.h"
-#include "sky/engine/core/css/CSSPrimitiveValue.h"
-#include "sky/engine/core/css/CSSShadowValue.h"
-#include "sky/engine/core/css/CSSValueList.h"
-#include "sky/engine/core/css/Pair.h"
-#include "sky/engine/core/css/Rect.h"
-#include "sky/engine/core/css/resolver/StyleResolver.h"
-#include "sky/engine/core/css/resolver/StyleResolverState.h"
-
-namespace blink {
-
-void DeferredLegacyStyleInterpolation::apply(StyleResolverState& state) const
-{
- RefPtr<LegacyStyleInterpolation> innerInterpolation = LegacyStyleInterpolation::create(
- StyleResolver::createAnimatableValueSnapshot(state, m_id, *m_startCSSValue),
- StyleResolver::createAnimatableValueSnapshot(state, m_id, *m_endCSSValue),
- m_id);
- innerInterpolation->interpolate(m_cachedIteration, m_cachedFraction);
- innerInterpolation->apply(state);
-}
-
-bool DeferredLegacyStyleInterpolation::interpolationRequiresStyleResolve(const CSSValue& value)
-{
- switch (value.cssValueType()) {
- case CSSValue::CSS_INHERIT:
- return true;
- case CSSValue::CSS_PRIMITIVE_VALUE:
- return interpolationRequiresStyleResolve(toCSSPrimitiveValue(value));
- case CSSValue::CSS_VALUE_LIST:
- return interpolationRequiresStyleResolve(toCSSValueList(value));
- case CSSValue::CSS_CUSTOM:
- if (value.isShadowValue())
- return interpolationRequiresStyleResolve(toCSSShadowValue(value));
- // FIXME: consider other custom types.
- return true;
- case CSSValue::CSS_INITIAL:
- // FIXME: should not require resolving styles for initial.
- return true;
- default:
- ASSERT_NOT_REACHED();
- return true;
- }
-}
-
-bool DeferredLegacyStyleInterpolation::interpolationRequiresStyleResolve(const CSSPrimitiveValue& primitiveValue)
-{
- // FIXME: consider other types.
- if (primitiveValue.isNumber() || primitiveValue.isPercentage() || primitiveValue.isAngle() || primitiveValue.isRGBColor() || primitiveValue.isURI())
- return false;
-
- if (primitiveValue.isLength())
- return primitiveValue.isFontRelativeLength() || primitiveValue.isViewportPercentageLength();
-
- if (primitiveValue.isCalculated()) {
- CSSLengthArray lengthArray(CSSPrimitiveValue::LengthUnitTypeCount);
- primitiveValue.accumulateLengthArray(lengthArray);
- return lengthArray[CSSPrimitiveValue::UnitTypeFontSize] != 0
- || lengthArray[CSSPrimitiveValue::UnitTypeFontXSize] != 0
- || lengthArray[CSSPrimitiveValue::UnitTypeZeroCharacterWidth] != 0
- || lengthArray[CSSPrimitiveValue::UnitTypeViewportWidth] != 0
- || lengthArray[CSSPrimitiveValue::UnitTypeViewportHeight] != 0
- || lengthArray[CSSPrimitiveValue::UnitTypeViewportMin] != 0
- || lengthArray[CSSPrimitiveValue::UnitTypeViewportMax] != 0;
- }
-
- if (Pair* pair = primitiveValue.getPairValue()) {
- return interpolationRequiresStyleResolve(*pair->first())
- || interpolationRequiresStyleResolve(*pair->second());
- }
-
- if (Rect* rect = primitiveValue.getRectValue()) {
- return interpolationRequiresStyleResolve(*rect->top())
- || interpolationRequiresStyleResolve(*rect->right())
- || interpolationRequiresStyleResolve(*rect->bottom())
- || interpolationRequiresStyleResolve(*rect->left());
- }
-
- if (Quad* quad = primitiveValue.getQuadValue()) {
- return interpolationRequiresStyleResolve(*quad->top())
- || interpolationRequiresStyleResolve(*quad->right())
- || interpolationRequiresStyleResolve(*quad->bottom())
- || interpolationRequiresStyleResolve(*quad->left());
- }
-
- if (primitiveValue.isShape())
- return interpolationRequiresStyleResolve(*primitiveValue.getShapeValue());
-
- return (primitiveValue.getValueID() != CSSValueNone);
-}
-
-bool DeferredLegacyStyleInterpolation::interpolationRequiresStyleResolve(const CSSShadowValue& shadowValue)
-{
- return (shadowValue.x && interpolationRequiresStyleResolve(*shadowValue.x))
- || (shadowValue.y && interpolationRequiresStyleResolve(*shadowValue.y))
- || (shadowValue.blur && interpolationRequiresStyleResolve(*shadowValue.blur))
- || (shadowValue.spread && interpolationRequiresStyleResolve(*shadowValue.spread))
- || (shadowValue.style && interpolationRequiresStyleResolve(*shadowValue.style))
- || (shadowValue.color && interpolationRequiresStyleResolve(*shadowValue.color));
-}
-
-bool DeferredLegacyStyleInterpolation::interpolationRequiresStyleResolve(const CSSValueList& valueList)
-{
- size_t length = valueList.length();
- for (size_t index = 0; index < length; ++index) {
- if (interpolationRequiresStyleResolve(*valueList.item(index)))
- return true;
- }
- return false;
-}
-
-bool DeferredLegacyStyleInterpolation::interpolationRequiresStyleResolve(const CSSBasicShape& shape)
-{
- // FIXME: Should determine the specific shape, and inspect the members.
- return false;
-}
-
-}

Powered by Google App Engine
This is Rietveld 408576698