| Index: content/public/test/mock_render_process_host.cc
|
| diff --git a/content/public/test/mock_render_process_host.cc b/content/public/test/mock_render_process_host.cc
|
| index 71d9b7443284e92df8d2b910dbaa1467b5322def..6ca84a2d5ec7fa8a66a1eb442ba6beb7c17bce6f 100644
|
| --- a/content/public/test/mock_render_process_host.cc
|
| +++ b/content/public/test/mock_render_process_host.cc
|
| @@ -309,10 +309,14 @@ void MockRenderProcessHost::EnableAudioDebugRecordings(
|
|
|
| void MockRenderProcessHost::DisableAudioDebugRecordings() {}
|
|
|
| -void MockRenderProcessHost::EnableEventLogRecordings(
|
| - const base::FilePath& file) {}
|
| +bool MockRenderProcessHost::StartWebRTCEventLog(
|
| + const base::FilePath& file_path) {
|
| + return false;
|
| +}
|
|
|
| -void MockRenderProcessHost::DisableEventLogRecordings() {}
|
| +bool MockRenderProcessHost::StopWebRTCEventLog() {
|
| + return false;
|
| +}
|
|
|
| void MockRenderProcessHost::SetWebRtcLogMessageCallback(
|
| base::Callback<void(const std::string&)> callback) {
|
|
|