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

Unified Diff: content/common/media/aec_dump_messages.h

Issue 1246283003: Split out audio debug recording from RenderProcessHostImpl. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile. Created 4 years, 11 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/common/BUILD.gn ('k') | content/common/media/audio_debug_recording.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/media/aec_dump_messages.h
diff --git a/content/common/media/aec_dump_messages.h b/content/common/media/aec_dump_messages.h
index f6031d0392c4335af5a4c491528cad6c4a6d7627..28b2de09fb4c9af818788980d1fde90187677c54 100644
--- a/content/common/media/aec_dump_messages.h
+++ b/content/common/media/aec_dump_messages.h
@@ -16,20 +16,11 @@
// Messages sent from the browser to the renderer.
// The browser hands over a file handle to the consumer in the renderer
-// identified by |id| to use for AEC dump.
-IPC_MESSAGE_CONTROL2(AecDumpMsg_EnableAecDump,
- int /* id */,
- IPC::PlatformFileForTransit /* file_handle */)
-
-// The browser hands over a file handle to the consumer in the renderer
// identified by |id| to use for the event log.
IPC_MESSAGE_CONTROL2(WebRTCEventLogMsg_EnableEventLog,
int /* id */,
IPC::PlatformFileForTransit /* file_handle */)
-// Tell the renderer to disable AEC dump in all consumers.
-IPC_MESSAGE_CONTROL0(AecDumpMsg_DisableAecDump)
-
// Tell the renderer to disable event log in all consumers.
IPC_MESSAGE_CONTROL0(WebRTCEventLogMsg_DisableEventLog)
@@ -37,16 +28,7 @@ IPC_MESSAGE_CONTROL0(WebRTCEventLogMsg_DisableEventLog)
// Registers a consumer with the browser. The consumer will then get a file
// handle when the dump is enabled.
-IPC_MESSAGE_CONTROL1(AecDumpMsg_RegisterAecDumpConsumer,
- int /* id */)
-
-// Registers a consumer with the browser. The consumer will then get a file
-// handle when the dump is enabled.
IPC_MESSAGE_CONTROL1(WebRTCEventLogMsg_RegisterEventLogConsumer, int /* id */)
// Unregisters a consumer with the browser.
-IPC_MESSAGE_CONTROL1(AecDumpMsg_UnregisterAecDumpConsumer,
- int /* id */)
-
-// Unregisters a consumer with the browser.
IPC_MESSAGE_CONTROL1(WebRTCEventLogMsg_UnregisterEventLogConsumer, int /* id */)
« no previous file with comments | « content/common/BUILD.gn ('k') | content/common/media/audio_debug_recording.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698