OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2014 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_API_PEERCONNECTIONFACTORYPROXY_H_ | 11 #ifndef WEBRTC_API_PEERCONNECTIONFACTORYPROXY_H_ |
12 #define WEBRTC_API_PEERCONNECTIONFACTORYPROXY_H_ | 12 #define WEBRTC_API_PEERCONNECTIONFACTORYPROXY_H_ |
13 | 13 |
14 #include <string> | 14 #include <string> |
15 #include <utility> | 15 #include <utility> |
16 | 16 |
17 #include "webrtc/api/peerconnectioninterface.h" | 17 #include "webrtc/api/peerconnectioninterface.h" |
18 #include "webrtc/api/proxy.h" | 18 #include "webrtc/api/proxy.h" |
19 #include "webrtc/base/bind.h" | 19 #include "webrtc/base/bind.h" |
20 | 20 |
21 namespace webrtc { | 21 namespace webrtc { |
22 | 22 |
23 BEGIN_PROXY_MAP(PeerConnectionFactory) | 23 BEGIN_SIGNALLING_PROXY_MAP(PeerConnectionFactory) |
24 PROXY_METHOD1(void, SetOptions, const Options&) | 24 PROXY_METHOD1(void, SetOptions, const Options&) |
25 // Can't use PROXY_METHOD5 because scoped_ptr must be moved. | 25 // Can't use PROXY_METHOD5 because scoped_ptr must be moved. |
26 // TODO(tommi,hbos): Use of templates to support scoped_ptr? | 26 // TODO(tommi,hbos): Use of templates to support scoped_ptr? |
27 rtc::scoped_refptr<PeerConnectionInterface> CreatePeerConnection( | 27 rtc::scoped_refptr<PeerConnectionInterface> CreatePeerConnection( |
28 const PeerConnectionInterface::RTCConfiguration& a1, | 28 const PeerConnectionInterface::RTCConfiguration& a1, |
29 const MediaConstraintsInterface* a2, | 29 const MediaConstraintsInterface* a2, |
30 rtc::scoped_ptr<cricket::PortAllocator> a3, | 30 rtc::scoped_ptr<cricket::PortAllocator> a3, |
31 rtc::scoped_ptr<DtlsIdentityStoreInterface> a4, | 31 rtc::scoped_ptr<DtlsIdentityStoreInterface> a4, |
32 PeerConnectionObserver* a5) override { | 32 PeerConnectionObserver* a5) override { |
33 return signaling_thread_ | 33 return signaling_thread_ |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 rtc::scoped_refptr<PeerConnectionInterface> CreatePeerConnection_ot( | 86 rtc::scoped_refptr<PeerConnectionInterface> CreatePeerConnection_ot( |
87 const PeerConnectionInterface::RTCConfiguration& a1, | 87 const PeerConnectionInterface::RTCConfiguration& a1, |
88 cricket::PortAllocator* a3, | 88 cricket::PortAllocator* a3, |
89 DtlsIdentityStoreInterface* a4, | 89 DtlsIdentityStoreInterface* a4, |
90 PeerConnectionObserver* a5) { | 90 PeerConnectionObserver* a5) { |
91 rtc::scoped_ptr<cricket::PortAllocator> ptr_a3(a3); | 91 rtc::scoped_ptr<cricket::PortAllocator> ptr_a3(a3); |
92 rtc::scoped_ptr<DtlsIdentityStoreInterface> ptr_a4(a4); | 92 rtc::scoped_ptr<DtlsIdentityStoreInterface> ptr_a4(a4); |
93 return c_->CreatePeerConnection(a1, std::move(ptr_a3), std::move(ptr_a4), | 93 return c_->CreatePeerConnection(a1, std::move(ptr_a3), std::move(ptr_a4), |
94 a5); | 94 a5); |
95 } | 95 } |
96 END_PROXY() | 96 END_SIGNALLING_PROXY() |
97 | 97 |
98 } // namespace webrtc | 98 } // namespace webrtc |
99 | 99 |
100 #endif // WEBRTC_API_PEERCONNECTIONFACTORYPROXY_H_ | 100 #endif // WEBRTC_API_PEERCONNECTIONFACTORYPROXY_H_ |
OLD | NEW |