OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 26 matching lines...) Expand all Loading... |
37 | 37 |
38 namespace blink { | 38 namespace blink { |
39 | 39 |
40 class CORE_EXPORT AnimatableClipPathOperation final : public AnimatableValue { | 40 class CORE_EXPORT AnimatableClipPathOperation final : public AnimatableValue { |
41 public: | 41 public: |
42 ~AnimatableClipPathOperation() override { } | 42 ~AnimatableClipPathOperation() override { } |
43 static PassRefPtr<AnimatableClipPathOperation> create(ClipPathOperation* ope
ration) | 43 static PassRefPtr<AnimatableClipPathOperation> create(ClipPathOperation* ope
ration) |
44 { | 44 { |
45 return adoptRef(new AnimatableClipPathOperation(operation)); | 45 return adoptRef(new AnimatableClipPathOperation(operation)); |
46 } | 46 } |
47 ClipPathOperation* clipPathOperation() const { return m_operation.get(); } | 47 ClipPathOperation* getClipPathOperation() const { return m_operation.get();
} |
48 | 48 |
49 protected: | 49 protected: |
50 PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fra
ction) const override; | 50 PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fra
ction) const override; |
51 bool usesDefaultInterpolationWith(const AnimatableValue*) const override; | 51 bool usesDefaultInterpolationWith(const AnimatableValue*) const override; |
52 | 52 |
53 private: | 53 private: |
54 AnimatableClipPathOperation(ClipPathOperation* operation) | 54 AnimatableClipPathOperation(ClipPathOperation* operation) |
55 : m_operation(operation) | 55 : m_operation(operation) |
56 { | 56 { |
57 ASSERT(m_operation); | 57 ASSERT(m_operation); |
58 } | 58 } |
59 AnimatableType type() const override { return TypeClipPathOperation; } | 59 AnimatableType type() const override { return TypeClipPathOperation; } |
60 bool equalTo(const AnimatableValue*) const override; | 60 bool equalTo(const AnimatableValue*) const override; |
61 | 61 |
62 RefPtr<ClipPathOperation> m_operation; | 62 RefPtr<ClipPathOperation> m_operation; |
63 }; | 63 }; |
64 | 64 |
65 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableClipPathOperation, isClipPathOperat
ion()); | 65 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableClipPathOperation, isClipPathOperat
ion()); |
66 | 66 |
67 } // namespace blink | 67 } // namespace blink |
68 | 68 |
69 #endif // AnimatableClipPathOperation_h | 69 #endif // AnimatableClipPathOperation_h |
OLD | NEW |