Index: webrtc/api/peerconnectionfactoryproxy.h |
diff --git a/webrtc/api/peerconnectionfactoryproxy.h b/webrtc/api/peerconnectionfactoryproxy.h |
index d83c3004068bcbd38cf8c7158505fef18200247a..829bf8177e164f3ed8b742da23e3d40403159e9f 100644 |
--- a/webrtc/api/peerconnectionfactoryproxy.h |
+++ b/webrtc/api/peerconnectionfactoryproxy.h |
@@ -50,14 +50,17 @@ BEGIN_PROXY_MAP(PeerConnectionFactory) |
PROXY_METHOD1(rtc::scoped_refptr<AudioSourceInterface>, |
CreateAudioSource, |
const cricket::AudioOptions&) |
- PROXY_METHOD2(rtc::scoped_refptr<VideoSourceInterface>, |
- CreateVideoSource, cricket::VideoCapturer*, |
+ PROXY_METHOD2(rtc::scoped_refptr<VideoTrackSourceInterface>, |
+ CreateVideoSource, |
+ cricket::VideoCapturer*, |
const MediaConstraintsInterface*) |
- PROXY_METHOD1(rtc::scoped_refptr<VideoSourceInterface>, |
+ PROXY_METHOD1(rtc::scoped_refptr<VideoTrackSourceInterface>, |
CreateVideoSource, |
cricket::VideoCapturer*) |
PROXY_METHOD2(rtc::scoped_refptr<VideoTrackInterface>, |
- CreateVideoTrack, const std::string&, VideoSourceInterface*) |
+ CreateVideoTrack, |
+ const std::string&, |
+ VideoTrackSourceInterface*) |
PROXY_METHOD2(rtc::scoped_refptr<AudioTrackInterface>, |
CreateAudioTrack, const std::string&, AudioSourceInterface*) |
PROXY_METHOD2(bool, StartAecDump, rtc::PlatformFile, int64_t) |