| 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/CSSFontWeightInterpolationType.h" | 5 #include "core/animation/CSSFontWeightInterpolationType.h" |
| 6 | 6 |
| 7 #include <memory> |
| 7 #include "core/css/CSSPrimitiveValueMappings.h" | 8 #include "core/css/CSSPrimitiveValueMappings.h" |
| 8 #include "core/css/resolver/StyleResolverState.h" | 9 #include "core/css/resolver/StyleResolverState.h" |
| 9 #include "wtf/PtrUtil.h" | 10 #include "wtf/PtrUtil.h" |
| 10 #include <memory> | |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 static double fontWeightToDouble(FontWeight fontWeight) { | 14 static double fontWeightToDouble(FontWeight fontWeight) { |
| 15 switch (fontWeight) { | 15 switch (fontWeight) { |
| 16 case FontWeight100: | 16 case FontWeight100: |
| 17 return 100; | 17 return 100; |
| 18 case FontWeight200: | 18 case FontWeight200: |
| 19 return 200; | 19 return 200; |
| 20 case FontWeight300: | 20 case FontWeight300: |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 | 136 |
| 137 void CSSFontWeightInterpolationType::applyStandardPropertyValue( | 137 void CSSFontWeightInterpolationType::applyStandardPropertyValue( |
| 138 const InterpolableValue& interpolableValue, | 138 const InterpolableValue& interpolableValue, |
| 139 const NonInterpolableValue*, | 139 const NonInterpolableValue*, |
| 140 StyleResolverState& state) const { | 140 StyleResolverState& state) const { |
| 141 state.fontBuilder().setWeight( | 141 state.fontBuilder().setWeight( |
| 142 doubleToFontWeight(toInterpolableNumber(interpolableValue).value())); | 142 doubleToFontWeight(toInterpolableNumber(interpolableValue).value())); |
| 143 } | 143 } |
| 144 | 144 |
| 145 } // namespace blink | 145 } // namespace blink |
| OLD | NEW |