Index: webrtc/media/base/mediaengine.h |
diff --git a/webrtc/media/base/mediaengine.h b/webrtc/media/base/mediaengine.h |
index 001eb1ff88a2072e543eeefecf657f9e4f7d3a7d..70dc48076ea2db342464a7f02fc95bb56d047459 100644 |
--- a/webrtc/media/base/mediaengine.h |
+++ b/webrtc/media/base/mediaengine.h |
@@ -93,12 +93,6 @@ class MediaEngineInterface { |
// Stops recording AEC dump. |
virtual void StopAecDump() = 0; |
- |
- // Starts RtcEventLog using existing file. |
- virtual bool StartRtcEventLog(rtc::PlatformFile file) = 0; |
- |
- // Stops recording an RtcEventLog. |
- virtual void StopRtcEventLog() = 0; |
}; |
@@ -181,12 +175,6 @@ class CompositeMediaEngine : public MediaEngineInterface { |
voice_.StopAecDump(); |
} |
- virtual bool StartRtcEventLog(rtc::PlatformFile file) { |
- return voice_.StartRtcEventLog(file); |
- } |
- |
- virtual void StopRtcEventLog() { voice_.StopRtcEventLog(); } |
- |
protected: |
VOICE voice_; |
VIDEO video_; |