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

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: Updated RTP/RTCP module to use setter methods instead of passing the event log pointer in the const… Created 4 years, 10 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 479d1acf4e820af67f8bbf925eac50700c9dfb2a..eb87f048d7a59b09b8eb6d40e83042ba1693f95b 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