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

Side by Side Diff: third_party/WebKit/Source/core/animation/CSSFontWeightInterpolationType.cpp

Issue 2700123003: DO NOT COMMIT: Results of running old (current) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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 unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698