| Index: content/public/browser/render_process_host.h
|
| diff --git a/content/public/browser/render_process_host.h b/content/public/browser/render_process_host.h
|
| index cb4418c0600667a838e1c706dfdb741a4fff2140..8526ef7ec4160afa508d9ba5af7ebed3db697121 100644
|
| --- a/content/public/browser/render_process_host.h
|
| +++ b/content/public/browser/render_process_host.h
|
| @@ -220,8 +220,15 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender,
|
| virtual void EnableAudioDebugRecordings(const base::FilePath& file) = 0;
|
| virtual void DisableAudioDebugRecordings() = 0;
|
|
|
| - virtual void EnableEventLogRecordings(const base::FilePath& file) = 0;
|
| - virtual void DisableEventLogRecordings() = 0;
|
| + // Starts a WebRTC event log for each peerconnection on the render process.
|
| + // A base file_path can be supplied, which will be extended to include several
|
| + // identifiers to ensure uniqueness. If a recording was already in progress,
|
| + // this call will return false and have no other effect.
|
| + virtual bool StartWebRTCEventLog(const base::FilePath& file_path) = 0;
|
| +
|
| + // Stops recording a WebRTC event log for each peerconnection on the render
|
| + // process. If no recording was in progress, this call will return false.
|
| + virtual bool StopWebRTCEventLog() = 0;
|
|
|
| // When set, |callback| receives log messages regarding, for example, media
|
| // devices (webcams, mics, etc) that were initially requested in the render
|
|
|