| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2011 Apple 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| 11 * documentation and/or other materials provided with the distribution. | 11 * documentation and/or other materials provided with the distribution. |
| 12 * | 12 * |
| 13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY | 13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY |
| 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR | 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR |
| 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 #include "core/html/track/TrackEvent.h" |
| 27 | 28 |
| 28 #include "core/html/track/TrackEvent.h" | 29 #include "bindings/core/v8/UnionTypesCore.h" |
| 30 #include "core/html/track/AudioTrack.h" |
| 31 #include "core/html/track/TextTrack.h" |
| 32 #include "core/html/track/VideoTrack.h" |
| 29 | 33 |
| 30 namespace blink { | 34 namespace blink { |
| 31 | 35 |
| 32 TrackEventInit::TrackEventInit() | 36 TrackEventInit::TrackEventInit() |
| 33 { | 37 { |
| 34 } | 38 } |
| 35 | 39 |
| 36 | 40 |
| 37 TrackEvent::TrackEvent() | 41 TrackEvent::TrackEvent() |
| 38 { | 42 { |
| 39 } | 43 } |
| 40 | 44 |
| 41 TrackEvent::TrackEvent(const AtomicString& type, const TrackEventInit& initializ
er) | 45 TrackEvent::TrackEvent(const AtomicString& type, const TrackEventInit& initializ
er) |
| 42 : Event(type, initializer) | 46 : Event(type, initializer) |
| 43 , m_track(initializer.track) | 47 , m_track(initializer.track) |
| 44 { | 48 { |
| 45 } | 49 } |
| 46 | 50 |
| 47 TrackEvent::~TrackEvent() | 51 TrackEvent::~TrackEvent() |
| 48 { | 52 { |
| 49 } | 53 } |
| 50 | 54 |
| 51 const AtomicString& TrackEvent::interfaceName() const | 55 const AtomicString& TrackEvent::interfaceName() const |
| 52 { | 56 { |
| 53 return EventNames::TrackEvent; | 57 return EventNames::TrackEvent; |
| 54 } | 58 } |
| 55 | 59 |
| 60 void TrackEvent::track(VideoTrackOrAudioTrackOrTextTrack& returnValue) |
| 61 { |
| 62 if (!m_track) |
| 63 return; |
| 64 |
| 65 switch (m_track->type()) { |
| 66 case TrackBase::TextTrack: |
| 67 returnValue.setTextTrack(toTextTrack(m_track.get())); |
| 68 break; |
| 69 case TrackBase::AudioTrack: |
| 70 returnValue.setAudioTrack(toAudioTrack(m_track.get())); |
| 71 break; |
| 72 case TrackBase::VideoTrack: |
| 73 returnValue.setVideoTrack(toVideoTrack(m_track.get())); |
| 74 break; |
| 75 default: |
| 76 ASSERT_NOT_REACHED(); |
| 77 } |
| 78 } |
| 79 |
| 56 void TrackEvent::trace(Visitor* visitor) | 80 void TrackEvent::trace(Visitor* visitor) |
| 57 { | 81 { |
| 58 visitor->trace(m_track); | 82 visitor->trace(m_track); |
| 59 Event::trace(visitor); | 83 Event::trace(visitor); |
| 60 } | 84 } |
| 61 | 85 |
| 62 } // namespace blink | 86 } // namespace blink |
| 63 | 87 |
| OLD | NEW |