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

Unified Diff: webrtc/call/rtc_event_log.h

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/call/rtc_event_log.h
diff --git a/webrtc/call/rtc_event_log.h b/webrtc/call/rtc_event_log.h
index 027f6867c6fea91d465c4e31718f6cc8b46d9d83..56cebca0ebda16aa56a92cb2f3647035a87ac909 100644
--- a/webrtc/call/rtc_event_log.h
+++ b/webrtc/call/rtc_event_log.h
@@ -50,7 +50,13 @@ class RtcEventLog {
// Starts logging until either the 10 minute timer runs out or the StopLogging
// function is called. The RtcEventLog takes ownership of the supplied
- // rtc::PlatformFile.
+ // rtc::PlatformFile. The max_size_bytes argument is ignored, it is added here
+ // for future use.
+ virtual bool StartLogging(rtc::PlatformFile log_file,
+ int64_t max_size_bytes) {
+ return StartLogging(log_file);
+ }
+
virtual bool StartLogging(rtc::PlatformFile log_file) = 0;
virtual void StopLogging() = 0;

Powered by Google App Engine
This is Rietveld 408576698