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

Unified Diff: webrtc/api/mediacontroller.cc

Issue 1748403002: Move RtcEventLog object from inside VoiceEngine to Call. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Undid unneccessary changes to rtp_rtcp module. 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/api/mediacontroller.cc
diff --git a/webrtc/api/mediacontroller.cc b/webrtc/api/mediacontroller.cc
index 341c013ed153c3d29efd03eb6b93a4a69460f30b..b27ea3105dfbe54f172baa574b1bda0003048d3d 100644
--- a/webrtc/api/mediacontroller.cc
+++ b/webrtc/api/mediacontroller.cc
@@ -42,6 +42,7 @@ class MediaController : public webrtc::MediaControllerInterface,
webrtc::Call* call_w() override {
RTC_DCHECK(worker_thread_->IsCurrent());
+ RTC_DCHECK(call_.get());
the sun 2016/03/21 13:03:08 you need to rebase.
ivoc 2016/03/22 13:44:54 Done, thanks (I removed this line while rebasing).
return call_.get();
}

Powered by Google App Engine
This is Rietveld 408576698