Remember the proxies
CL that should have been part of CL 195541 Bug: webrtc:12238 Change-Id: I3ab7a7a5f0d0bfdbc00904a01444acda02d49e90 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/195543 Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Commit-Queue: Harald Alvestrand <hta@webrtc.org> Cr-Commit-Position: refs/heads/master@{#32712}
This commit is contained in:

committed by
Commit Bot

parent
cd982137df
commit
faaaa87960
@ -36,6 +36,10 @@ PROXY_METHOD2(rtc::scoped_refptr<PeerConnectionInterface>,
|
|||||||
CreatePeerConnection,
|
CreatePeerConnection,
|
||||||
const PeerConnectionInterface::RTCConfiguration&,
|
const PeerConnectionInterface::RTCConfiguration&,
|
||||||
PeerConnectionDependencies)
|
PeerConnectionDependencies)
|
||||||
|
PROXY_METHOD2(RTCErrorOr<rtc::scoped_refptr<PeerConnectionInterface>>,
|
||||||
|
CreatePeerConnectionOrError,
|
||||||
|
const PeerConnectionInterface::RTCConfiguration&,
|
||||||
|
PeerConnectionDependencies)
|
||||||
PROXY_CONSTMETHOD1(webrtc::RtpCapabilities,
|
PROXY_CONSTMETHOD1(webrtc::RtpCapabilities,
|
||||||
GetRtpSenderCapabilities,
|
GetRtpSenderCapabilities,
|
||||||
cricket::MediaType)
|
cricket::MediaType)
|
||||||
|
@ -32,6 +32,11 @@ class MockPeerConnectionFactoryInterface final
|
|||||||
(const PeerConnectionInterface::RTCConfiguration&,
|
(const PeerConnectionInterface::RTCConfiguration&,
|
||||||
PeerConnectionDependencies),
|
PeerConnectionDependencies),
|
||||||
(override));
|
(override));
|
||||||
|
MOCK_METHOD(RTCErrorOr<rtc::scoped_refptr<PeerConnectionInterface>>,
|
||||||
|
CreatePeerConnectionOrError,
|
||||||
|
(const PeerConnectionInterface::RTCConfiguration&,
|
||||||
|
PeerConnectionDependencies),
|
||||||
|
(override));
|
||||||
MOCK_METHOD(rtc::scoped_refptr<PeerConnectionInterface>,
|
MOCK_METHOD(rtc::scoped_refptr<PeerConnectionInterface>,
|
||||||
CreatePeerConnection,
|
CreatePeerConnection,
|
||||||
(const PeerConnectionInterface::RTCConfiguration&,
|
(const PeerConnectionInterface::RTCConfiguration&,
|
||||||
|
Reference in New Issue
Block a user