| Index: webrtc/api/peerconnectionfactory.cc
|
| diff --git a/webrtc/api/peerconnectionfactory.cc b/webrtc/api/peerconnectionfactory.cc
|
| index b2a379839c06a40ed13cfad151896254820b2220..11de8d1c38f82a6aaaccd234ed7b23ec3923a8aa 100644
|
| --- a/webrtc/api/peerconnectionfactory.cc
|
| +++ b/webrtc/api/peerconnectionfactory.cc
|
| @@ -235,9 +235,10 @@ void PeerConnectionFactory::StopAecDump() {
|
| channel_manager_->StopAecDump();
|
| }
|
|
|
| -bool PeerConnectionFactory::StartRtcEventLog(rtc::PlatformFile file) {
|
| +bool PeerConnectionFactory::StartRtcEventLog(rtc::PlatformFile file,
|
| + int64_t max_size_bytes) {
|
| RTC_DCHECK(signaling_thread_->IsCurrent());
|
| - return channel_manager_->StartRtcEventLog(file);
|
| + return channel_manager_->StartRtcEventLog(file, max_size_bytes);
|
| }
|
|
|
| void PeerConnectionFactory::StopRtcEventLog() {
|
|
|