Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Unified Diff: webrtc/media/base/mediaengine.h

Issue 1748403002: Move RtcEventLog object from inside VoiceEngine to Call. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: More fixes for bots. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698