| Index: third_party/WebKit/Source/core/animation/NonInterpolableValue.h
|
| diff --git a/third_party/WebKit/Source/core/animation/NonInterpolableValue.h b/third_party/WebKit/Source/core/animation/NonInterpolableValue.h
|
| index e467d04274c56b6c8a625711e9c30d54dab14dd7..99393edb4d836784165aa0df98519bb4d6a58a24 100644
|
| --- a/third_party/WebKit/Source/core/animation/NonInterpolableValue.h
|
| +++ b/third_party/WebKit/Source/core/animation/NonInterpolableValue.h
|
| @@ -9,7 +9,8 @@
|
|
|
| namespace blink {
|
|
|
| -// Represents components of a PropertySpecificKeyframe's value that either do not change or 50% flip when interpolating with an adjacent value.
|
| +// Represents components of a PropertySpecificKeyframe's value that either do
|
| +// not change or 50% flip when interpolating with an adjacent value.
|
| class NonInterpolableValue : public RefCounted<NonInterpolableValue> {
|
| public:
|
| virtual ~NonInterpolableValue() {}
|
| @@ -18,7 +19,8 @@ class NonInterpolableValue : public RefCounted<NonInterpolableValue> {
|
| virtual Type getType() const = 0;
|
| };
|
|
|
| -// These macros provide safe downcasts of NonInterpolableValue subclasses with debug assertions.
|
| +// These macros provide safe downcasts of NonInterpolableValue subclasses with
|
| +// debug assertions.
|
| // See CSSValueInterpolationType.cpp for example usage.
|
| #define DECLARE_NON_INTERPOLABLE_VALUE_TYPE() \
|
| static Type staticType; \
|
|
|