Chromium Code Reviews| 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 animateImpl(element, effect, TimingInput::convert(timingInputDict ionary)); |
| 50 } | |
| 51 | |
| 52 static Animation* animate(Element& element, PassRefPtrWillBeRawPtr<Animation Effect> effect, double duration) | |
| 53 { | |
| 54 return animateImpl(element, effect, TimingInput::convert(duration)); | |
| 55 } | |
| 56 | |
| 57 static Animation* animate(Element& element, PassRefPtrWillBeRawPtr<Animation Effect> effect) | |
| 58 { | |
| 59 return animateImpl(element, effect, TimingInput::convert()); | |
| 60 } | |
| 61 | |
| 62 static Animation* animate(Element& element, Vector<Dictionary> keyframeDicti onaryVector, const Dictionary& timingInputDictionary) | |
| 63 { | |
| 64 return animateImpl(element, EffectInput::convert(&element, keyframeDicti onaryVector), TimingInput::convert(timingInputDictionary)); | |
| 65 } | |
| 66 | |
| 67 static Animation* animate(Element& element, Vector<Dictionary> keyframeDicti onaryVector, double duration) | |
| 68 { | |
| 69 return animateImpl(element, EffectInput::convert(&element, keyframeDicti onaryVector), TimingInput::convert(duration)); | |
| 70 } | |
| 71 | |
| 72 static Animation* animate(Element& element, Vector<Dictionary> keyframeDicti onaryVector) | |
| 73 { | |
| 74 return animateImpl(element, EffectInput::convert(&element, keyframeDicti onaryVector), TimingInput::convert()); | |
| 75 } | |
| 76 | |
| 77 private: | |
| 78 static Animation* animateImpl(Element& element, PassRefPtrWillBeRawPtr<Anima tionEffect> effect, Timing timing) | |
|
esprehn
2014/03/04 00:59:42
animateInternal?
alancutter (OOO until 2018)
2014/03/04 01:21:41
Done.
| |
| 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 |