OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2012 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 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 | 66 |
67 #ifndef WEBRTC_API_PEERCONNECTIONINTERFACE_H_ | 67 #ifndef WEBRTC_API_PEERCONNECTIONINTERFACE_H_ |
68 #define WEBRTC_API_PEERCONNECTIONINTERFACE_H_ | 68 #define WEBRTC_API_PEERCONNECTIONINTERFACE_H_ |
69 | 69 |
70 #include <memory> | 70 #include <memory> |
71 #include <ostream> | 71 #include <ostream> |
72 #include <string> | 72 #include <string> |
73 #include <utility> | 73 #include <utility> |
74 #include <vector> | 74 #include <vector> |
75 | 75 |
| 76 #include "webrtc/api/audio_codecs/audio_decoder_factory.h" |
76 #include "webrtc/api/datachannelinterface.h" | 77 #include "webrtc/api/datachannelinterface.h" |
77 #include "webrtc/api/dtmfsenderinterface.h" | 78 #include "webrtc/api/dtmfsenderinterface.h" |
78 #include "webrtc/api/jsep.h" | 79 #include "webrtc/api/jsep.h" |
79 #include "webrtc/api/mediastreaminterface.h" | 80 #include "webrtc/api/mediastreaminterface.h" |
80 #include "webrtc/api/stats/rtcstatscollectorcallback.h" | |
81 #include "webrtc/api/rtpreceiverinterface.h" | 81 #include "webrtc/api/rtpreceiverinterface.h" |
82 #include "webrtc/api/rtpsenderinterface.h" | 82 #include "webrtc/api/rtpsenderinterface.h" |
| 83 #include "webrtc/api/stats/rtcstatscollectorcallback.h" |
83 #include "webrtc/api/statstypes.h" | 84 #include "webrtc/api/statstypes.h" |
84 #include "webrtc/api/umametrics.h" | 85 #include "webrtc/api/umametrics.h" |
85 #include "webrtc/base/fileutils.h" | 86 #include "webrtc/base/fileutils.h" |
86 #include "webrtc/base/network.h" | 87 #include "webrtc/base/network.h" |
87 #include "webrtc/base/rtccertificate.h" | 88 #include "webrtc/base/rtccertificate.h" |
88 #include "webrtc/base/rtccertificategenerator.h" | 89 #include "webrtc/base/rtccertificategenerator.h" |
89 #include "webrtc/base/socketaddress.h" | 90 #include "webrtc/base/socketaddress.h" |
90 #include "webrtc/base/sslstreamadapter.h" | 91 #include "webrtc/base/sslstreamadapter.h" |
91 #include "webrtc/media/base/mediachannel.h" | 92 #include "webrtc/media/base/mediachannel.h" |
92 #include "webrtc/modules/audio_coding/codecs/audio_decoder_factory.h" | |
93 #include "webrtc/p2p/base/portallocator.h" | 93 #include "webrtc/p2p/base/portallocator.h" |
94 | 94 |
95 namespace rtc { | 95 namespace rtc { |
96 class SSLIdentity; | 96 class SSLIdentity; |
97 class Thread; | 97 class Thread; |
98 } | 98 } |
99 | 99 |
100 namespace cricket { | 100 namespace cricket { |
101 class WebRtcVideoDecoderFactory; | 101 class WebRtcVideoDecoderFactory; |
102 class WebRtcVideoEncoderFactory; | 102 class WebRtcVideoEncoderFactory; |
(...skipping 1031 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1134 cricket::WebRtcVideoEncoderFactory* encoder_factory, | 1134 cricket::WebRtcVideoEncoderFactory* encoder_factory, |
1135 cricket::WebRtcVideoDecoderFactory* decoder_factory) { | 1135 cricket::WebRtcVideoDecoderFactory* decoder_factory) { |
1136 return CreatePeerConnectionFactory( | 1136 return CreatePeerConnectionFactory( |
1137 worker_and_network_thread, worker_and_network_thread, signaling_thread, | 1137 worker_and_network_thread, worker_and_network_thread, signaling_thread, |
1138 default_adm, encoder_factory, decoder_factory); | 1138 default_adm, encoder_factory, decoder_factory); |
1139 } | 1139 } |
1140 | 1140 |
1141 } // namespace webrtc | 1141 } // namespace webrtc |
1142 | 1142 |
1143 #endif // WEBRTC_API_PEERCONNECTIONINTERFACE_H_ | 1143 #endif // WEBRTC_API_PEERCONNECTIONINTERFACE_H_ |
OLD | NEW |