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

Side by Side Diff: third_party/WebKit/Source/core/animation/ListInterpolationFunctions.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/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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698