Chromium Code Reviews| Index: content/browser/renderer_host/render_process_host_impl.h |
| diff --git a/content/browser/renderer_host/render_process_host_impl.h b/content/browser/renderer_host/render_process_host_impl.h |
| index f5646797ab5f86e35d90d8b11ec2aecff41548aa..585b5a6dca163dd4e99a622d18e693dcac56252e 100644 |
| --- a/content/browser/renderer_host/render_process_host_impl.h |
| +++ b/content/browser/renderer_host/render_process_host_impl.h |
| @@ -143,8 +143,6 @@ class CONTENT_EXPORT RenderProcessHostImpl |
| #if defined(ENABLE_WEBRTC) |
| void EnableAudioDebugRecordings(const base::FilePath& file) override; |
| void DisableAudioDebugRecordings() override; |
| - void EnableEventLogRecordings(const base::FilePath& file) override; |
|
Henrik Grunell
2016/05/10 08:44:56
Very nice to get rid of these! :)
Ivo-OOO until feb 6
2016/05/12 13:23:24
Agreed :)
|
| - void DisableEventLogRecordings() override; |
| void SetWebRtcLogMessageCallback( |
| base::Callback<void(const std::string&)> callback) override; |
| void ClearWebRtcLogMessageCallback() override; |
| @@ -341,24 +339,15 @@ class CONTENT_EXPORT RenderProcessHostImpl |
| #if defined(ENABLE_WEBRTC) |
| void OnRegisterAecDumpConsumer(int id); |
| - void OnRegisterEventLogConsumer(int id); |
| void OnUnregisterAecDumpConsumer(int id); |
| - void OnUnregisterEventLogConsumer(int id); |
| void RegisterAecDumpConsumerOnUIThread(int id); |
| - void RegisterEventLogConsumerOnUIThread(int id); |
| void UnregisterAecDumpConsumerOnUIThread(int id); |
| - void UnregisterEventLogConsumerOnUIThread(int id); |
| void EnableAecDumpForId(const base::FilePath& file, int id); |
| - void EnableEventLogForId(const base::FilePath& file, int id); |
| // Sends |file_for_transit| to the render process. |
| void SendAecDumpFileToRenderer(int id, |
| IPC::PlatformFileForTransit file_for_transit); |
| - void SendEventLogFileToRenderer(int id, |
| - IPC::PlatformFileForTransit file_for_transit); |
| void SendDisableAecDumpToRenderer(); |
| - void SendDisableEventLogToRenderer(); |
| base::FilePath GetAecDumpFilePathWithExtensions(const base::FilePath& file); |
| - base::FilePath GetEventLogFilePathWithExtensions(const base::FilePath& file); |
| #endif |
| std::unique_ptr<MojoChildConnection> mojo_child_connection_; |