| Index: third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
|
| diff --git a/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h b/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
|
| index 277ce6e5f259e1c3525907bc85d455c1a7b283ac..8b11d40d2ec2a5fb7ac09d884ef6c821066087aa 100644
|
| --- a/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
|
| +++ b/third_party/WebKit/Source/core/animation/PrimitiveInterpolation.h
|
| @@ -17,8 +17,9 @@ namespace blink {
|
|
|
| class StyleResolverState;
|
|
|
| -// Represents an animation's effect between an adjacent pair of PropertySpecificKeyframes after converting
|
| -// the keyframes to an internal format with respect to the animation environment and underlying values.
|
| +// Represents an animation's effect between an adjacent pair of
|
| +// PropertySpecificKeyframes after converting the keyframes to an internal
|
| +// format with respect to the animation environment and underlying values.
|
| class PrimitiveInterpolation {
|
| USING_FAST_MALLOC(PrimitiveInterpolation);
|
| WTF_MAKE_NONCOPYABLE(PrimitiveInterpolation);
|
| @@ -38,7 +39,8 @@ class PrimitiveInterpolation {
|
| PrimitiveInterpolation() {}
|
| };
|
|
|
| -// Represents a pair of keyframes that are compatible for "smooth" interpolation eg. "0px" and "100px".
|
| +// Represents a pair of keyframes that are compatible for "smooth" interpolation
|
| +// eg. "0px" and "100px".
|
| class PairwisePrimitiveInterpolation : public PrimitiveInterpolation {
|
| public:
|
| ~PairwisePrimitiveInterpolation() override {}
|
| @@ -96,7 +98,8 @@ class PairwisePrimitiveInterpolation : public PrimitiveInterpolation {
|
| RefPtr<NonInterpolableValue> m_nonInterpolableValue;
|
| };
|
|
|
| -// Represents a pair of incompatible keyframes that fall back to 50% flip behaviour eg. "auto" and "0px".
|
| +// Represents a pair of incompatible keyframes that fall back to 50% flip
|
| +// behaviour eg. "auto" and "0px".
|
| class FlipPrimitiveInterpolation : public PrimitiveInterpolation {
|
| public:
|
| ~FlipPrimitiveInterpolation() override {}
|
|
|