| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 | 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 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 #include "modules/mediastream/MediaStreamTrack.h" | 28 #include "modules/mediastream/MediaStreamTrack.h" |
| 29 | 29 |
| 30 namespace WebCore { | 30 namespace WebCore { |
| 31 | 31 |
| 32 PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> MediaStreamTrackEvent::create() | 32 PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> MediaStreamTrackEvent::create() |
| 33 { | 33 { |
| 34 return adoptRefWillBeNoop(new MediaStreamTrackEvent); | 34 return adoptRefWillBeNoop(new MediaStreamTrackEvent); |
| 35 } | 35 } |
| 36 | 36 |
| 37 PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> MediaStreamTrackEvent::create(cons
t AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStreamTra
ck> track) | 37 PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> MediaStreamTrackEvent::create(cons
t AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Me
diaStreamTrack> track) |
| 38 { | 38 { |
| 39 return adoptRefWillBeNoop(new MediaStreamTrackEvent(type, canBubble, cancela
ble, track)); | 39 return adoptRefWillBeNoop(new MediaStreamTrackEvent(type, canBubble, cancela
ble, track)); |
| 40 } | 40 } |
| 41 | 41 |
| 42 | 42 |
| 43 MediaStreamTrackEvent::MediaStreamTrackEvent() | 43 MediaStreamTrackEvent::MediaStreamTrackEvent() |
| 44 { | 44 { |
| 45 ScriptWrappable::init(this); | 45 ScriptWrappable::init(this); |
| 46 } | 46 } |
| 47 | 47 |
| 48 MediaStreamTrackEvent::MediaStreamTrackEvent(const AtomicString& type, bool canB
ubble, bool cancelable, PassRefPtr<MediaStreamTrack> track) | 48 MediaStreamTrackEvent::MediaStreamTrackEvent(const AtomicString& type, bool canB
ubble, bool cancelable, PassRefPtrWillBeRawPtr<MediaStreamTrack> track) |
| 49 : Event(type, canBubble, cancelable) | 49 : Event(type, canBubble, cancelable) |
| 50 , m_track(track) | 50 , m_track(track) |
| 51 { | 51 { |
| 52 ScriptWrappable::init(this); | 52 ScriptWrappable::init(this); |
| 53 } | 53 } |
| 54 | 54 |
| 55 MediaStreamTrackEvent::~MediaStreamTrackEvent() | 55 MediaStreamTrackEvent::~MediaStreamTrackEvent() |
| 56 { | 56 { |
| 57 } | 57 } |
| 58 | 58 |
| 59 MediaStreamTrack* MediaStreamTrackEvent::track() const | 59 MediaStreamTrack* MediaStreamTrackEvent::track() const |
| 60 { | 60 { |
| 61 return m_track.get(); | 61 return m_track.get(); |
| 62 } | 62 } |
| 63 | 63 |
| 64 const AtomicString& MediaStreamTrackEvent::interfaceName() const | 64 const AtomicString& MediaStreamTrackEvent::interfaceName() const |
| 65 { | 65 { |
| 66 return EventNames::MediaStreamTrackEvent; | 66 return EventNames::MediaStreamTrackEvent; |
| 67 } | 67 } |
| 68 | 68 |
| 69 void MediaStreamTrackEvent::trace(Visitor* visitor) | 69 void MediaStreamTrackEvent::trace(Visitor* visitor) |
| 70 { | 70 { |
| 71 visitor->trace(m_track); |
| 71 Event::trace(visitor); | 72 Event::trace(visitor); |
| 72 } | 73 } |
| 73 | 74 |
| 74 } // namespace WebCore | 75 } // namespace WebCore |
| OLD | NEW |