| Index: webrtc/api/java/jni/peerconnection_jni.cc
|
| diff --git a/webrtc/api/java/jni/peerconnection_jni.cc b/webrtc/api/java/jni/peerconnection_jni.cc
|
| index ac328efc2b13d2e15c6a22878ba62cea11aebcc9..14f80e50a594ddb3b64b459f06308c3b9b3e40fe 100644
|
| --- a/webrtc/api/java/jni/peerconnection_jni.cc
|
| +++ b/webrtc/api/java/jni/peerconnection_jni.cc
|
| @@ -1288,11 +1288,15 @@ JOW(void, PeerConnectionFactory_nativeStopAecDump)(
|
| factory->StopAecDump();
|
| }
|
|
|
| -JOW(jboolean, PeerConnectionFactory_nativeStartRtcEventLog)(
|
| - JNIEnv* jni, jclass, jlong native_factory, jint file) {
|
| +JOW(jboolean, PeerConnectionFactory_nativeStartRtcEventLog)
|
| +(JNIEnv* jni,
|
| + jclass,
|
| + jlong native_factory,
|
| + jint file,
|
| + jint filesize_limit_bytes) {
|
| rtc::scoped_refptr<PeerConnectionFactoryInterface> factory(
|
| factoryFromJava(native_factory));
|
| - return factory->StartRtcEventLog(file);
|
| + return factory->StartRtcEventLog(file, filesize_limit_bytes);
|
| }
|
|
|
| JOW(void, PeerConnectionFactory_nativeStopRtcEventLog)(
|
|
|