| OLD | NEW |
| 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 #ifndef AnimatablePath_h | 5 #ifndef AnimatablePath_h |
| 6 #define AnimatablePath_h | 6 #define AnimatablePath_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/animation/animatable/AnimatableValue.h" | 9 #include "core/animation/animatable/AnimatableValue.h" |
| 10 #include "core/style/StylePath.h" | 10 #include "core/style/StylePath.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 class CORE_EXPORT AnimatablePath final : public AnimatableValue { | 14 class CORE_EXPORT AnimatablePath final : public AnimatableValue { |
| 15 public: | 15 public: |
| 16 ~AnimatablePath() override { } | 16 ~AnimatablePath() override { } |
| 17 static PassRefPtr<AnimatablePath> create(PassRefPtr<StylePath> path) | 17 static PassRefPtr<AnimatablePath> create(PassRefPtr<StylePath> path) |
| 18 { | 18 { |
| 19 return adoptRef(new AnimatablePath(path)); | 19 return adoptRef(new AnimatablePath(std::move(path))); |
| 20 } | 20 } |
| 21 | 21 |
| 22 StylePath* path() const { return m_path.get(); } | 22 StylePath* path() const { return m_path.get(); } |
| 23 | 23 |
| 24 protected: | 24 protected: |
| 25 PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fra
ction) const override; | 25 PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fra
ction) const override; |
| 26 bool usesDefaultInterpolationWith(const AnimatableValue*) const override; | 26 bool usesDefaultInterpolationWith(const AnimatableValue*) const override; |
| 27 | 27 |
| 28 private: | 28 private: |
| 29 explicit AnimatablePath(PassRefPtr<StylePath> path) | 29 explicit AnimatablePath(PassRefPtr<StylePath> path) |
| 30 : m_path(path) | 30 : m_path(path) |
| 31 { | 31 { |
| 32 } | 32 } |
| 33 AnimatableType type() const override { return TypePath; } | 33 AnimatableType type() const override { return TypePath; } |
| 34 bool equalTo(const AnimatableValue*) const override; | 34 bool equalTo(const AnimatableValue*) const override; |
| 35 const RefPtr<StylePath> m_path; | 35 const RefPtr<StylePath> m_path; |
| 36 }; | 36 }; |
| 37 | 37 |
| 38 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatablePath, isPath()); | 38 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatablePath, isPath()); |
| 39 | 39 |
| 40 } // namespace blink | 40 } // namespace blink |
| 41 | 41 |
| 42 #endif // AnimatablePath_h | 42 #endif // AnimatablePath_h |
| OLD | NEW |