Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Unified Diff: content/browser/renderer_host/render_process_host_impl.h

Issue 1855193002: Move the call to enable the WebRTC event log from PeerConnectionFactory to PeerConnection. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added limit to number of log files and the size of the log files. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 7580068dff19cda345e3087b6a0e029e7ebf2f96..b7a21f2a442a14c649b9549a1086bbb4abe4a95c 100644
--- a/content/browser/renderer_host/render_process_host_impl.h
+++ b/content/browser/renderer_host/render_process_host_impl.h
@@ -146,8 +146,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;
- void DisableEventLogRecordings() override;
void SetWebRtcLogMessageCallback(
base::Callback<void(const std::string&)> callback) override;
WebRtcStopRtpDumpCallback StartRtpDump(
@@ -339,24 +337,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
// The token to be passed to the child process and exchanged for a message

Powered by Google App Engine
This is Rietveld 408576698