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

Side by Side Diff: third_party/WebKit/Source/core/animation/CSSRotateInterpolationType.h

Issue 2578043002: Rename apply() in CSSInterpolationType subclasses (Closed)
Patch Set: rebased Created 4 years 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #ifndef CSSRotateInterpolationType_h 5 #ifndef CSSRotateInterpolationType_h
6 #define CSSRotateInterpolationType_h 6 #define CSSRotateInterpolationType_h
7 7
8 #include "core/animation/CSSInterpolationType.h" 8 #include "core/animation/CSSInterpolationType.h"
9 9
10 namespace blink { 10 namespace blink {
(...skipping 11 matching lines...) Expand all
22 const InterpolationEnvironment&, 22 const InterpolationEnvironment&,
23 const InterpolationValue& underlying, 23 const InterpolationValue& underlying,
24 ConversionCheckers&) const final; 24 ConversionCheckers&) const final;
25 PairwiseInterpolationValue maybeMergeSingles( 25 PairwiseInterpolationValue maybeMergeSingles(
26 InterpolationValue&& start, 26 InterpolationValue&& start,
27 InterpolationValue&& end) const final; 27 InterpolationValue&& end) const final;
28 void composite(UnderlyingValueOwner&, 28 void composite(UnderlyingValueOwner&,
29 double underlyingFraction, 29 double underlyingFraction,
30 const InterpolationValue&, 30 const InterpolationValue&,
31 double interpolationFraction) const final; 31 double interpolationFraction) const final;
32 void apply(const InterpolableValue&, 32 void applyStandardPropertyValue(const InterpolableValue&,
33 const NonInterpolableValue*, 33 const NonInterpolableValue*,
34 InterpolationEnvironment&) const final; 34 StyleResolverState&) const final;
35 35
36 private: 36 private:
37 InterpolationValue maybeConvertNeutral(const InterpolationValue& underlying, 37 InterpolationValue maybeConvertNeutral(const InterpolationValue& underlying,
38 ConversionCheckers&) const final; 38 ConversionCheckers&) const final;
39 InterpolationValue maybeConvertInitial(const StyleResolverState&, 39 InterpolationValue maybeConvertInitial(const StyleResolverState&,
40 ConversionCheckers&) const final; 40 ConversionCheckers&) const final;
41 InterpolationValue maybeConvertInherit(const StyleResolverState&, 41 InterpolationValue maybeConvertInherit(const StyleResolverState&,
42 ConversionCheckers&) const final; 42 ConversionCheckers&) const final;
43 InterpolationValue maybeConvertValue(const CSSValue&, 43 InterpolationValue maybeConvertValue(const CSSValue&,
44 const StyleResolverState&, 44 const StyleResolverState&,
45 ConversionCheckers&) const final; 45 ConversionCheckers&) const final;
46 }; 46 };
47 47
48 } // namespace blink 48 } // namespace blink
49 49
50 #endif // CSSRotateInterpolationType_h 50 #endif // CSSRotateInterpolationType_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698