Chromium Code Reviews| Index: webrtc/call.h |
| diff --git a/webrtc/call.h b/webrtc/call.h |
| index 313c5e58c16f49446c8d6fbcdaa92950179628a8..323ddc53881a79a740f94fa4383ac16d66200e72 100644 |
| --- a/webrtc/call.h |
| +++ b/webrtc/call.h |
| @@ -17,6 +17,7 @@ |
| #include "webrtc/audio_receive_stream.h" |
| #include "webrtc/audio_send_stream.h" |
| #include "webrtc/audio_state.h" |
| +#include "webrtc/base/platform_file.h" |
| #include "webrtc/base/socket.h" |
| #include "webrtc/video_receive_stream.h" |
| #include "webrtc/video_send_stream.h" |
| @@ -137,6 +138,11 @@ class Call { |
| virtual void OnSentPacket(const rtc::SentPacket& sent_packet) = 0; |
| + virtual bool StartEventLog(rtc::PlatformFile log_file, |
| + int64_t max_size_bytes) = 0; |
| + |
|
the sun
2016/03/23 10:26:45
nit: remove blank line
ivoc
2016/03/23 14:27:26
Done.
|
| + virtual void StopEventLog() = 0; |
| + |
| virtual ~Call() {} |
| }; |