| Index: content/renderer/media/rtc_peer_connection_handler.h
|
| diff --git a/content/renderer/media/rtc_peer_connection_handler.h b/content/renderer/media/rtc_peer_connection_handler.h
|
| index 16bdfd9e8893bd4a056f624dca73685e9703c659..8219ac689c5b5fbdf0faf46a1330fc5a86bacb32 100644
|
| --- a/content/renderer/media/rtc_peer_connection_handler.h
|
| +++ b/content/renderer/media/rtc_peer_connection_handler.h
|
| @@ -19,6 +19,7 @@
|
| #include "base/threading/thread_checker.h"
|
| #include "content/common/content_export.h"
|
| #include "content/renderer/media/webrtc/media_stream_track_metrics.h"
|
| +#include "ipc/ipc_platform_file.h"
|
| #include "third_party/WebKit/public/platform/WebMediaStreamSource.h"
|
| #include "third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h"
|
| #include "third_party/WebKit/public/platform/WebRTCStatsRequest.h"
|
| @@ -165,6 +166,12 @@ class CONTENT_EXPORT RTCPeerConnectionHandler
|
| // Tells the |client_| to close RTCPeerConnection.
|
| void CloseClientPeerConnection();
|
|
|
| + // Start recording an event log.
|
| + void StartEventLog(IPC::PlatformFileForTransit file,
|
| + int64_t max_file_size_bytes);
|
| + // Stop recording an event log.
|
| + void StopEventLog();
|
| +
|
| protected:
|
| webrtc::PeerConnectionInterface* native_peer_connection() {
|
| return native_peer_connection_.get();
|
|
|