Index: talk/app/webrtc/peerconnectionfactory.cc |
diff --git a/talk/app/webrtc/peerconnectionfactory.cc b/talk/app/webrtc/peerconnectionfactory.cc |
index 54a32bc7b8618235762e1840dfc51c5ad3f784fd..a79e8e5357a41077b12803c2795a0ab87ee7c909 100644 |
--- a/talk/app/webrtc/peerconnectionfactory.cc |
+++ b/talk/app/webrtc/peerconnectionfactory.cc |
@@ -213,9 +213,10 @@ PeerConnectionFactory::CreateVideoSource( |
return VideoSourceProxy::Create(signaling_thread_, source); |
} |
-bool PeerConnectionFactory::StartAecDump(rtc::PlatformFile file) { |
+bool PeerConnectionFactory::StartAecDump(rtc::PlatformFile file, |
+ int64_t max_size_bytes) { |
RTC_DCHECK(signaling_thread_->IsCurrent()); |
- return channel_manager_->StartAecDump(file); |
+ return channel_manager_->StartAecDump(file, max_size_bytes); |
} |
bool PeerConnectionFactory::StartRtcEventLog(rtc::PlatformFile file) { |