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

Unified Diff: webrtc/api/mediacontroller.h

Issue 2353033005: Refactoring: move ownership of RtcEventLog from Call to PeerConnection (Closed)
Patch Set: Moved the constructor Created 4 years, 2 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
« no previous file with comments | « webrtc/api/DEPS ('k') | webrtc/api/mediacontroller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/mediacontroller.h
diff --git a/webrtc/api/mediacontroller.h b/webrtc/api/mediacontroller.h
index d7c76ab499df310dd671fc4d9b81af36ad7a1ccb..5ada20d22888dccb744ad6efc723818a515e054b 100644
--- a/webrtc/api/mediacontroller.h
+++ b/webrtc/api/mediacontroller.h
@@ -21,6 +21,7 @@ struct MediaConfig;
namespace webrtc {
class Call;
class VoiceEngine;
+class RtcEventLog;
// The MediaController currently owns shared state between media channels, but
// in the future will create and own RtpSenders and RtpReceivers.
@@ -29,7 +30,8 @@ class MediaControllerInterface {
static MediaControllerInterface* Create(
const cricket::MediaConfig& config,
rtc::Thread* worker_thread,
- cricket::ChannelManager* channel_manager);
+ cricket::ChannelManager* channel_manager,
+ webrtc::RtcEventLog* event_log);
virtual ~MediaControllerInterface() {}
virtual void Close() = 0;
« no previous file with comments | « webrtc/api/DEPS ('k') | webrtc/api/mediacontroller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698