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

Unified Diff: talk/media/webrtc/webrtcvoiceengine.h

Issue 1374253002: Added functions on libjingle API to start and stop the recording of an RtcEventLog. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase and added comment on PeerConnectionFactoryInterface Created 5 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
Index: talk/media/webrtc/webrtcvoiceengine.h
diff --git a/talk/media/webrtc/webrtcvoiceengine.h b/talk/media/webrtc/webrtcvoiceengine.h
index 269920523f4cf93852f12b9119861a3d63f15b94..1652e3ffb4cfd78d4c3b6bbada464b987737d1c8 100644
--- a/talk/media/webrtc/webrtcvoiceengine.h
+++ b/talk/media/webrtc/webrtcvoiceengine.h
@@ -108,6 +108,13 @@ class WebRtcVoiceEngine
// Starts AEC dump using existing file.
bool StartAecDump(rtc::PlatformFile file);
+ // Starts recording an RtcEventLog using an existing file until 10 minutes
+ // pass or the StopRtcEventLog function is called.
+ bool StartRtcEventLog(rtc::PlatformFile file);
+
+ // Stops recording the RtcEventLog.
+ void StopRtcEventLog();
+
// Create a VoiceEngine Channel.
int CreateMediaVoiceChannel();

Powered by Google App Engine
This is Rietveld 408576698