Chromium Code Reviews| Index: Source/core/animation/LengthPairStyleInterpolation.h |
| diff --git a/Source/core/animation/LengthPairStyleInterpolation.h b/Source/core/animation/LengthPairStyleInterpolation.h |
| index 18e2a280832df47f1dc6dea9bbd1ac8c7cc2dd04..e7b78eecfc3256b42565d7e7a7017b0260eb47a3 100644 |
| --- a/Source/core/animation/LengthPairStyleInterpolation.h |
| +++ b/Source/core/animation/LengthPairStyleInterpolation.h |
| @@ -12,6 +12,7 @@ namespace blink { |
| class LengthPairStyleInterpolation : public StyleInterpolation { |
| public: |
| + |
|
samli
2014/12/22 03:38:04
remove new line
|
| static PassRefPtrWillBeRawPtr<LengthPairStyleInterpolation> create(const CSSValue& start, const CSSValue& end, CSSPropertyID id, ValueRange range) |
| { |
| return adoptRefWillBeNoop(new LengthPairStyleInterpolation(lengthPairToInterpolableValue(start), lengthPairToInterpolableValue(end), id, range)); |
| @@ -20,6 +21,8 @@ public: |
| static bool canCreateFrom(const CSSValue&); |
| virtual void apply(StyleResolverState&) const override; |
| + virtual void trace(Visitor*) override; |
| + |
| private: |
| LengthPairStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID id, ValueRange range) |