Index: webrtc/api/java/src/org/webrtc/PeerConnectionFactory.java |
diff --git a/webrtc/api/java/src/org/webrtc/PeerConnectionFactory.java b/webrtc/api/java/src/org/webrtc/PeerConnectionFactory.java |
index 87fa55afcc00a11932981724b8667cf6ca9b46de..6f5eb5894ee3e7038741407cdd7e23fe12f66822 100644 |
--- a/webrtc/api/java/src/org/webrtc/PeerConnectionFactory.java |
+++ b/webrtc/api/java/src/org/webrtc/PeerConnectionFactory.java |
@@ -147,19 +147,6 @@ public class PeerConnectionFactory { |
nativeStopAecDump(nativeFactory); |
} |
- // Starts recording an RTC event log. Ownership of the file is transfered to |
- // the native code. If an RTC event log is already being recorded, it will be |
- // stopped and a new one will start using the provided file. |
- public boolean startRtcEventLog(int file_descriptor) { |
- return nativeStartRtcEventLog(nativeFactory, file_descriptor); |
- } |
- |
- // Stops recording an RTC event log. If no RTC event log is currently being |
- // recorded, this call will have no effect. |
- public void StopRtcEventLog() { |
- nativeStopRtcEventLog(nativeFactory); |
- } |
- |
@Deprecated |
public void setOptions(Options options) { |
nativeSetOptions(nativeFactory, options); |
@@ -258,10 +245,6 @@ public class PeerConnectionFactory { |
private static native void nativeStopAecDump(long nativeFactory); |
- private static native boolean nativeStartRtcEventLog(long nativeFactory, int file_descriptor); |
- |
- private static native void nativeStopRtcEventLog(long nativeFactory); |
- |
@Deprecated |
public native void nativeSetOptions(long nativeFactory, Options options); |