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

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

Issue 1545713003: Add StylePath and use it to store 'd' in ComputedStyle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 2015->2016; Remove unnecessary explicit. Created 4 years, 11 months 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 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/css/CSSPathValue.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(PassRefPtrWillBeRawPtr<CSSPathValue > pathValue) 17 static PassRefPtr<AnimatablePath> create(PassRefPtr<StylePath> path)
18 { 18 {
19 return adoptRef(new AnimatablePath(pathValue)); 19 return adoptRef(new AnimatablePath(path));
20 } 20 }
21 21
22 CSSPathValue* pathValue() const { return m_pathValue.get(); } 22 StylePath* path() const;
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(PassRefPtrWillBeRawPtr<CSSPathValue> pathValue) 29 explicit AnimatablePath(PassRefPtr<StylePath> path)
30 : m_pathValue(pathValue) 30 : m_path(path)
31 { 31 {
32 ASSERT(m_pathValue); 32 ASSERT(m_path);
33 } 33 }
34 AnimatableType type() const override { return TypePath; } 34 AnimatableType type() const override { return TypePath; }
35 bool equalTo(const AnimatableValue*) const override; 35 bool equalTo(const AnimatableValue*) const override;
36 const RefPtrWillBePersistent<CSSPathValue> m_pathValue; 36 const RefPtr<StylePath> m_path;
37 }; 37 };
38 38
39 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatablePath, isPath()); 39 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatablePath, isPath());
40 40
41 } // namespace blink 41 } // namespace blink
42 42
43 #endif // AnimatablePath_h 43 #endif // AnimatablePath_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698