Index: talk/app/webrtc/peerconnectioninterface.h |
diff --git a/talk/app/webrtc/peerconnectioninterface.h b/talk/app/webrtc/peerconnectioninterface.h |
index a5d98ffa747dd73e5f0585194b8e0ac604986acf..abc3d85f3bc053f7e090adfd37fc375d03a0a239 100644 |
--- a/talk/app/webrtc/peerconnectioninterface.h |
+++ b/talk/app/webrtc/peerconnectioninterface.h |
@@ -621,6 +621,9 @@ class PeerConnectionFactoryInterface : public rtc::RefCountInterface { |
// http://crbug.com/264611. |
virtual bool StartAecDump(rtc::PlatformFile file) = 0; |
+ // Same as above, but a maximum file size in bytes can be specified. |
+ virtual bool StartAecDump(rtc::PlatformFile file, int max_size_bytes) = 0; |
+ |
// Starts RtcEventLog using existing file. Takes ownership of |file| and |
// passes it on to VoiceEngine, which will take the ownership. If the |
// operation fails the file will be closed. The logging will stop |