| Index: webrtc/call/rtc_event_log.h | 
| diff --git a/webrtc/call/rtc_event_log.h b/webrtc/call/rtc_event_log.h | 
| index 518308bf2d2c3577c707837a835cbc6234fb671f..6547c5d8683d56937a6ecf041e216e010099f3f5 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; | 
|  |