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

Unified Diff: content/renderer/media/aec_dump_message_filter.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 CONTENT_EXPORT to WebRTCEventLogHost. Created 4 years, 5 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
« no previous file with comments | « content/public/test/mock_render_process_host.cc ('k') | content/renderer/media/aec_dump_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/aec_dump_message_filter.h
diff --git a/content/renderer/media/aec_dump_message_filter.h b/content/renderer/media/aec_dump_message_filter.h
index a211a8aebca82840d666c2b9dde18efffeaf0489..f0bccc6b4832522fc90c70c09127c23671df41d3 100644
--- a/content/renderer/media/aec_dump_message_filter.h
+++ b/content/renderer/media/aec_dump_message_filter.h
@@ -33,8 +33,7 @@ class CONTENT_EXPORT AecDumpMessageFilter : public IPC::MessageFilter {
AecDumpMessageFilter(
const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner,
- const scoped_refptr<base::SingleThreadTaskRunner>& main_task_runner,
- PeerConnectionDependencyFactory* peerconnection_dependency_factory);
+ const scoped_refptr<base::SingleThreadTaskRunner>& main_task_runner);
// Getter for the one AecDumpMessageFilter object.
static scoped_refptr<AecDumpMessageFilter> Get();
@@ -73,15 +72,11 @@ class CONTENT_EXPORT AecDumpMessageFilter : public IPC::MessageFilter {
// Accessed on |io_task_runner_|.
void OnEnableAecDump(int id, IPC::PlatformFileForTransit file_handle);
- void OnEnableEventLog(int id, IPC::PlatformFileForTransit file_handle);
void OnDisableAecDump();
- void OnDisableEventLog();
// Accessed on |main_task_runner_|.
void DoEnableAecDump(int id, IPC::PlatformFileForTransit file_handle);
- void DoEnableEventLog(int id, IPC::PlatformFileForTransit file_handle);
void DoDisableAecDump();
- void DoDisableEventLog();
void DoChannelClosingOnDelegates();
int GetIdForDelegate(AecDumpMessageFilter::AecDumpDelegate* delegate);
@@ -106,9 +101,6 @@ class CONTENT_EXPORT AecDumpMessageFilter : public IPC::MessageFilter {
// The singleton instance for this filter.
static AecDumpMessageFilter* g_filter;
- // This pointer is used for calls to enable/disable the RTC event log.
- PeerConnectionDependencyFactory* const peerconnection_dependency_factory_;
-
DISALLOW_COPY_AND_ASSIGN(AecDumpMessageFilter);
};
« no previous file with comments | « content/public/test/mock_render_process_host.cc ('k') | content/renderer/media/aec_dump_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698