| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "core/animation/ListInterpolationFunctions.h" | 5 #include "core/animation/ListInterpolationFunctions.h" |
| 6 | 6 |
| 7 #include <memory> |
| 7 #include "core/animation/UnderlyingValueOwner.h" | 8 #include "core/animation/UnderlyingValueOwner.h" |
| 8 #include "core/css/CSSValueList.h" | 9 #include "core/css/CSSValueList.h" |
| 9 #include "wtf/MathExtras.h" | 10 #include "wtf/MathExtras.h" |
| 10 #include <memory> | |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 DEFINE_NON_INTERPOLABLE_VALUE_TYPE(NonInterpolableList); | 14 DEFINE_NON_INTERPOLABLE_VALUE_TYPE(NonInterpolableList); |
| 15 | 15 |
| 16 bool ListInterpolationFunctions::equalValues( | 16 bool ListInterpolationFunctions::equalValues( |
| 17 const InterpolationValue& a, | 17 const InterpolationValue& a, |
| 18 const InterpolationValue& b, | 18 const InterpolationValue& b, |
| 19 EqualNonInterpolableValuesCallback equalNonInterpolableValues) { | 19 EqualNonInterpolableValuesCallback equalNonInterpolableValues) { |
| 20 if (!a && !b) | 20 if (!a && !b) |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 toNonInterpolableList(*underlyingValue.nonInterpolableValue); | 202 toNonInterpolableList(*underlyingValue.nonInterpolableValue); |
| 203 for (size_t i = 0; i < newLength; i++) { | 203 for (size_t i = 0; i < newLength; i++) { |
| 204 compositeItem(underlyingInterpolableList.getMutable(i), | 204 compositeItem(underlyingInterpolableList.getMutable(i), |
| 205 underlyingNonInterpolableList.getMutable(i), | 205 underlyingNonInterpolableList.getMutable(i), |
| 206 underlyingFraction, *interpolableList.get(i % valueLength), | 206 underlyingFraction, *interpolableList.get(i % valueLength), |
| 207 nonInterpolableList.get(i % valueLength)); | 207 nonInterpolableList.get(i % valueLength)); |
| 208 } | 208 } |
| 209 } | 209 } |
| 210 | 210 |
| 211 } // namespace blink | 211 } // namespace blink |
| OLD | NEW |