Index: webrtc/call.h |
diff --git a/webrtc/call.h b/webrtc/call.h |
index f89af93b5152e5d81e24b0b75f37b9510dae07fd..ff20a1ec1e46496847cf8b56c48de7d84e786c89 100644 |
--- a/webrtc/call.h |
+++ b/webrtc/call.h |
@@ -18,6 +18,7 @@ |
#include "webrtc/audio_send_stream.h" |
#include "webrtc/audio_state.h" |
#include "webrtc/base/networkroute.h" |
+#include "webrtc/base/platform_file.h" |
#include "webrtc/base/socket.h" |
#include "webrtc/video_receive_stream.h" |
#include "webrtc/video_send_stream.h" |
@@ -147,6 +148,10 @@ class Call { |
virtual void OnSentPacket(const rtc::SentPacket& sent_packet) = 0; |
+ virtual bool StartEventLog(rtc::PlatformFile log_file, |
+ int64_t max_size_bytes) = 0; |
+ virtual void StopEventLog() = 0; |
+ |
virtual ~Call() {} |
}; |