Index: talk/app/webrtc/java/jni/peerconnection_jni.cc |
diff --git a/talk/app/webrtc/java/jni/peerconnection_jni.cc b/talk/app/webrtc/java/jni/peerconnection_jni.cc |
index 52b67495ebc111a95e2fb4c9f3055f566ed683b5..c31859def809318b3bf61e400504dc112bce1478 100644 |
--- a/talk/app/webrtc/java/jni/peerconnection_jni.cc |
+++ b/talk/app/webrtc/java/jni/peerconnection_jni.cc |
@@ -1280,12 +1280,11 @@ |
} |
JOW(jboolean, PeerConnectionFactory_nativeStartAecDump)( |
- JNIEnv* jni, jclass, jlong native_factory, jint file, |
- jint filesize_limit_bytes) { |
+ JNIEnv* jni, jclass, jlong native_factory, jint file) { |
#if defined(ANDROID) |
rtc::scoped_refptr<PeerConnectionFactoryInterface> factory( |
factoryFromJava(native_factory)); |
- return factory->StartAecDump(file, filesize_limit_bytes); |
+ return factory->StartAecDump(file); |
#else |
return false; |
#endif |