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 13 matching lines...) Expand all Loading... |
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef ElementAnimation_h | 31 #ifndef ElementAnimation_h |
32 #define ElementAnimation_h | 32 #define ElementAnimation_h |
33 | 33 |
34 #include "wtf/Vector.h" | 34 #include "RuntimeEnabledFeatures.h" |
| 35 #include "core/animation/Animation.h" |
| 36 #include "core/animation/DocumentTimeline.h" |
| 37 #include "core/animation/EffectInput.h" |
| 38 #include "core/animation/TimingInput.h" |
| 39 #include "core/dom/Element.h" |
35 | 40 |
36 namespace WebCore { | 41 namespace WebCore { |
37 | 42 |
38 class Animation; | |
39 class Dictionary; | 43 class Dictionary; |
40 class Element; | |
41 | 44 |
42 class ElementAnimation { | 45 class ElementAnimation { |
43 public: | 46 public: |
44 static Animation* animate(Element&, Vector<Dictionary> keyframesDictionaryVe
ctor, Dictionary timingInput); | 47 static Animation* animate(Element& element, PassRefPtrWillBeRawPtr<Animation
Effect> effect, const Dictionary& timingInputDictionary) |
45 static Animation* animate(Element&, Vector<Dictionary> keyframesDictionaryVe
ctor, double timingInput); | 48 { |
46 static Animation* animate(Element&, Vector<Dictionary> keyframesDictionaryVe
ctor); | 49 return animateInternal(element, effect, TimingInput::convert(timingInput
Dictionary)); |
| 50 } |
| 51 |
| 52 static Animation* animate(Element& element, PassRefPtrWillBeRawPtr<Animation
Effect> effect, double duration) |
| 53 { |
| 54 return animateInternal(element, effect, TimingInput::convert(duration)); |
| 55 } |
| 56 |
| 57 static Animation* animate(Element& element, PassRefPtrWillBeRawPtr<Animation
Effect> effect) |
| 58 { |
| 59 return animateInternal(element, effect, Timing()); |
| 60 } |
| 61 |
| 62 static Animation* animate(Element& element, const Vector<Dictionary>& keyfra
meDictionaryVector, const Dictionary& timingInputDictionary) |
| 63 { |
| 64 return animateInternal(element, EffectInput::convert(&element, keyframeD
ictionaryVector), TimingInput::convert(timingInputDictionary)); |
| 65 } |
| 66 |
| 67 static Animation* animate(Element& element, const Vector<Dictionary>& keyfra
meDictionaryVector, double duration) |
| 68 { |
| 69 return animateInternal(element, EffectInput::convert(&element, keyframeD
ictionaryVector), TimingInput::convert(duration)); |
| 70 } |
| 71 |
| 72 static Animation* animate(Element& element, const Vector<Dictionary>& keyfra
meDictionaryVector) |
| 73 { |
| 74 return animateInternal(element, EffectInput::convert(&element, keyframeD
ictionaryVector), Timing()); |
| 75 } |
| 76 |
| 77 private: |
| 78 static Animation* animateInternal(Element& element, PassRefPtrWillBeRawPtr<A
nimationEffect> effect, const Timing& timing) |
| 79 { |
| 80 ASSERT(RuntimeEnabledFeatures::webAnimationsAPIEnabled()); |
| 81 RefPtr<Animation> animation = Animation::create(&element, effect, timing
); |
| 82 element.document().timeline().play(animation.get()); |
| 83 return animation.get(); |
| 84 } |
47 }; | 85 }; |
48 | 86 |
49 } // namespace WebCore | 87 } // namespace WebCore |
50 | 88 |
51 #endif // ElementAnimation_h | 89 #endif // ElementAnimation_h |
OLD | NEW |