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 | 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 10 matching lines...) Expand all Loading... |
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 #ifndef RTCDTMFSender_h | 26 #ifndef RTCDTMFSender_h |
27 #define RTCDTMFSender_h | 27 #define RTCDTMFSender_h |
28 | 28 |
29 #include "bindings/v8/ScriptWrappable.h" | 29 #include "bindings/v8/ScriptWrappable.h" |
30 #include "core/dom/ActiveDOMObject.h" | 30 #include "core/dom/ActiveDOMObject.h" |
31 #include "core/events/EventTarget.h" | 31 #include "core/dom/EventTarget.h" |
32 #include "core/platform/Timer.h" | 32 #include "core/platform/Timer.h" |
33 #include "core/platform/mediastream/RTCDTMFSenderHandlerClient.h" | 33 #include "core/platform/mediastream/RTCDTMFSenderHandlerClient.h" |
34 #include "wtf/RefCounted.h" | 34 #include "wtf/RefCounted.h" |
35 | 35 |
36 namespace WebCore { | 36 namespace WebCore { |
37 | 37 |
38 class ExceptionState; | 38 class ExceptionState; |
39 class MediaStreamTrack; | 39 class MediaStreamTrack; |
40 class RTCDTMFSenderHandler; | 40 class RTCDTMFSenderHandler; |
41 class RTCPeerConnectionHandler; | 41 class RTCPeerConnectionHandler; |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 | 91 |
92 bool m_stopped; | 92 bool m_stopped; |
93 | 93 |
94 Timer<RTCDTMFSender> m_scheduledEventTimer; | 94 Timer<RTCDTMFSender> m_scheduledEventTimer; |
95 Vector<RefPtr<Event> > m_scheduledEvents; | 95 Vector<RefPtr<Event> > m_scheduledEvents; |
96 }; | 96 }; |
97 | 97 |
98 } // namespace WebCore | 98 } // namespace WebCore |
99 | 99 |
100 #endif // RTCDTMFSender_h | 100 #endif // RTCDTMFSender_h |
OLD | NEW |