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

Unified Diff: webrtc/pc/channelmanager.cc

Issue 1748403002: Move RtcEventLog object from inside VoiceEngine to Call. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Processed review comments and rebased. 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/pc/channelmanager.cc
diff --git a/webrtc/pc/channelmanager.cc b/webrtc/pc/channelmanager.cc
index 6e6623cf2bd19bb136b19c293b9c114f8bda9f67..f49f8d411f2a9118e4428e267f3aadd3dd854ecc 100644
--- a/webrtc/pc/channelmanager.cc
+++ b/webrtc/pc/channelmanager.cc
@@ -418,14 +418,4 @@ void ChannelManager::StopAecDump() {
Bind(&MediaEngineInterface::StopAecDump, media_engine_.get()));
}
-bool ChannelManager::StartRtcEventLog(rtc::PlatformFile file) {
- return worker_thread_->Invoke<bool>(
- Bind(&MediaEngineInterface::StartRtcEventLog, media_engine_.get(), file));
-}
-
-void ChannelManager::StopRtcEventLog() {
- worker_thread_->Invoke<void>(
- Bind(&MediaEngineInterface::StopRtcEventLog, media_engine_.get()));
-}
-
} // namespace cricket

Powered by Google App Engine
This is Rietveld 408576698