OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2004 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2004 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef WEBRTC_PC_CHANNEL_H_ | 11 #ifndef WEBRTC_PC_CHANNEL_H_ |
12 #define WEBRTC_PC_CHANNEL_H_ | 12 #define WEBRTC_PC_CHANNEL_H_ |
13 | 13 |
14 #include <map> | 14 #include <map> |
15 #include <memory> | 15 #include <memory> |
16 #include <set> | 16 #include <set> |
17 #include <string> | 17 #include <string> |
18 #include <utility> | 18 #include <utility> |
19 #include <vector> | 19 #include <vector> |
20 | 20 |
21 #include "webrtc/api/call/audio_sink.h" | 21 #include "webrtc/api/call/audio_sink.h" |
22 #include "webrtc/api/rtpreceiverinterface.h" | 22 #include "webrtc/api/rtpreceiverinterface.h" |
| 23 #include "webrtc/base/asyncinvoker.h" |
| 24 #include "webrtc/base/asyncudpsocket.h" |
| 25 #include "webrtc/base/criticalsection.h" |
| 26 #include "webrtc/base/network.h" |
| 27 #include "webrtc/base/sigslot.h" |
| 28 #include "webrtc/base/window.h" |
23 #include "webrtc/media/base/mediachannel.h" | 29 #include "webrtc/media/base/mediachannel.h" |
24 #include "webrtc/media/base/mediaengine.h" | 30 #include "webrtc/media/base/mediaengine.h" |
25 #include "webrtc/media/base/streamparams.h" | 31 #include "webrtc/media/base/streamparams.h" |
26 #include "webrtc/media/base/videosinkinterface.h" | 32 #include "webrtc/media/base/videosinkinterface.h" |
27 #include "webrtc/media/base/videosourceinterface.h" | 33 #include "webrtc/media/base/videosourceinterface.h" |
28 #include "webrtc/p2p/base/dtlstransportinternal.h" | 34 #include "webrtc/p2p/base/dtlstransportinternal.h" |
29 #include "webrtc/p2p/base/packettransportinternal.h" | 35 #include "webrtc/p2p/base/packettransportinternal.h" |
30 #include "webrtc/p2p/base/transportcontroller.h" | 36 #include "webrtc/p2p/base/transportcontroller.h" |
31 #include "webrtc/p2p/client/socketmonitor.h" | 37 #include "webrtc/p2p/client/socketmonitor.h" |
32 #include "webrtc/pc/audiomonitor.h" | 38 #include "webrtc/pc/audiomonitor.h" |
33 #include "webrtc/pc/mediamonitor.h" | 39 #include "webrtc/pc/mediamonitor.h" |
34 #include "webrtc/pc/mediasession.h" | 40 #include "webrtc/pc/mediasession.h" |
35 #include "webrtc/pc/rtcpmuxfilter.h" | 41 #include "webrtc/pc/rtcpmuxfilter.h" |
36 #include "webrtc/pc/rtptransport.h" | 42 #include "webrtc/pc/rtptransport.h" |
37 #include "webrtc/pc/srtpfilter.h" | 43 #include "webrtc/pc/srtpfilter.h" |
38 #include "webrtc/rtc_base/asyncinvoker.h" | |
39 #include "webrtc/rtc_base/asyncudpsocket.h" | |
40 #include "webrtc/rtc_base/criticalsection.h" | |
41 #include "webrtc/rtc_base/network.h" | |
42 #include "webrtc/rtc_base/sigslot.h" | |
43 #include "webrtc/rtc_base/window.h" | |
44 | 44 |
45 namespace webrtc { | 45 namespace webrtc { |
46 class AudioSinkInterface; | 46 class AudioSinkInterface; |
47 } // namespace webrtc | 47 } // namespace webrtc |
48 | 48 |
49 namespace cricket { | 49 namespace cricket { |
50 | 50 |
51 struct CryptoParams; | 51 struct CryptoParams; |
52 class MediaContentDescription; | 52 class MediaContentDescription; |
53 | 53 |
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
728 // SetSendParameters. | 728 // SetSendParameters. |
729 DataSendParameters last_send_params_; | 729 DataSendParameters last_send_params_; |
730 // Last DataRecvParameters sent down to the media_channel() via | 730 // Last DataRecvParameters sent down to the media_channel() via |
731 // SetRecvParameters. | 731 // SetRecvParameters. |
732 DataRecvParameters last_recv_params_; | 732 DataRecvParameters last_recv_params_; |
733 }; | 733 }; |
734 | 734 |
735 } // namespace cricket | 735 } // namespace cricket |
736 | 736 |
737 #endif // WEBRTC_PC_CHANNEL_H_ | 737 #endif // WEBRTC_PC_CHANNEL_H_ |
OLD | NEW |