| 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/CSSColorInterpolationType.h" | 5 #include "core/animation/CSSColorInterpolationType.h" |
| 6 | 6 |
| 7 #include <memory> |
| 7 #include "core/animation/ColorPropertyFunctions.h" | 8 #include "core/animation/ColorPropertyFunctions.h" |
| 8 #include "core/css/CSSColorValue.h" | 9 #include "core/css/CSSColorValue.h" |
| 9 #include "core/css/CSSIdentifierValue.h" | 10 #include "core/css/CSSIdentifierValue.h" |
| 10 #include "core/css/resolver/StyleResolverState.h" | 11 #include "core/css/resolver/StyleResolverState.h" |
| 11 #include "core/layout/LayoutTheme.h" | 12 #include "core/layout/LayoutTheme.h" |
| 12 #include "wtf/PtrUtil.h" | 13 #include "wtf/PtrUtil.h" |
| 13 #include <memory> | |
| 14 | 14 |
| 15 namespace blink { | 15 namespace blink { |
| 16 | 16 |
| 17 enum InterpolableColorIndex : unsigned { | 17 enum InterpolableColorIndex : unsigned { |
| 18 Red, | 18 Red, |
| 19 Green, | 19 Green, |
| 20 Blue, | 20 Blue, |
| 21 Alpha, | 21 Alpha, |
| 22 Currentcolor, | 22 Currentcolor, |
| 23 WebkitActivelink, | 23 WebkitActivelink, |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 const CSSValue* CSSColorInterpolationType::createCSSValue( | 278 const CSSValue* CSSColorInterpolationType::createCSSValue( |
| 279 const InterpolableValue& interpolableValue, | 279 const InterpolableValue& interpolableValue, |
| 280 const NonInterpolableValue*, | 280 const NonInterpolableValue*, |
| 281 const StyleResolverState& state) const { | 281 const StyleResolverState& state) const { |
| 282 const InterpolableList& colorPair = toInterpolableList(interpolableValue); | 282 const InterpolableList& colorPair = toInterpolableList(interpolableValue); |
| 283 Color color = resolveInterpolableColor(*colorPair.get(Unvisited), state); | 283 Color color = resolveInterpolableColor(*colorPair.get(Unvisited), state); |
| 284 return CSSColorValue::create(color.rgb()); | 284 return CSSColorValue::create(color.rgb()); |
| 285 } | 285 } |
| 286 | 286 |
| 287 } // namespace blink | 287 } // namespace blink |
| OLD | NEW |