Add rtc:SocketFactory as member of jni OwnedFactoryAndThreads
Bug: webrtc:13145 Change-Id: Iff1b59d291b1a36d474cf3fb6fafa4e9ff007aa0 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/232060 Reviewed-by: Jonas Oreland <jonaso@webrtc.org> Reviewed-by: Xavier Lepaul <xalep@webrtc.org> Commit-Queue: Niels Moller <nisse@webrtc.org> Cr-Commit-Position: refs/heads/main@{#35051}
This commit is contained in:

committed by
WebRTC LUCI CQ

parent
f7a7698aaf
commit
e7c77ecd32
@ -21,12 +21,13 @@ namespace webrtc {
|
||||
jobject NativeToJavaPeerConnectionFactory(
|
||||
JNIEnv* jni,
|
||||
rtc::scoped_refptr<webrtc::PeerConnectionFactoryInterface> pcf,
|
||||
std::unique_ptr<rtc::SocketFactory> socket_factory,
|
||||
std::unique_ptr<rtc::Thread> network_thread,
|
||||
std::unique_ptr<rtc::Thread> worker_thread,
|
||||
std::unique_ptr<rtc::Thread> signaling_thread) {
|
||||
return webrtc::jni::NativeToJavaPeerConnectionFactory(
|
||||
jni, pcf, std::move(network_thread), std::move(worker_thread),
|
||||
std::move(signaling_thread));
|
||||
jni, pcf, std::move(socket_factory), std::move(network_thread),
|
||||
std::move(worker_thread), std::move(signaling_thread));
|
||||
}
|
||||
|
||||
} // namespace webrtc
|
||||
|
@ -24,6 +24,7 @@ namespace webrtc {
|
||||
jobject NativeToJavaPeerConnectionFactory(
|
||||
JNIEnv* jni,
|
||||
rtc::scoped_refptr<webrtc::PeerConnectionFactoryInterface> pcf,
|
||||
std::unique_ptr<rtc::SocketFactory> socket_factory,
|
||||
std::unique_ptr<rtc::Thread> network_thread,
|
||||
std::unique_ptr<rtc::Thread> worker_thread,
|
||||
std::unique_ptr<rtc::Thread> signaling_thread);
|
||||
|
Reference in New Issue
Block a user