| Index: talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java
 | 
| diff --git a/talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java b/talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java
 | 
| index e65c736ffc232eb0bc78ddaca67fad2779a4e42f..d759c692718288276082a77e469877f968bb2df3 100644
 | 
| --- a/talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java
 | 
| +++ b/talk/app/webrtc/java/src/org/webrtc/PeerConnectionFactory.java
 | 
| @@ -143,8 +143,8 @@
 | 
|    // Starts recording an AEC dump. Ownership of the file is transfered to the
 | 
|    // native code. If an AEC dump is already in progress, it will be stopped and
 | 
|    // a new one will start using the provided file.
 | 
| -  public boolean startAecDump(int file_descriptor, int filesize_limit_bytes) {
 | 
| -    return nativeStartAecDump(nativeFactory, file_descriptor, filesize_limit_bytes);
 | 
| +  public boolean startAecDump(int file_descriptor) {
 | 
| +    return nativeStartAecDump(nativeFactory, file_descriptor);
 | 
|    }
 | 
|  
 | 
|    // Stops recording an AEC dump. If no AEC dump is currently being recorded,
 | 
| @@ -250,8 +250,7 @@
 | 
|    private static native long nativeCreateAudioTrack(
 | 
|        long nativeFactory, String id, long nativeSource);
 | 
|  
 | 
| -  private static native boolean nativeStartAecDump(
 | 
| -      long nativeFactory, int file_descriptor, int filesize_limit_bytes);
 | 
| +  private static native boolean nativeStartAecDump(long nativeFactory, int file_descriptor);
 | 
|  
 | 
|    private static native void nativeStopAecDump(long nativeFactory);
 | 
|  
 | 
| 
 |