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

Side by Side Diff: content/common/media/aec_dump_messages.h

Issue 2801853005: Create a private API for controlling WebRTC's AEC3 (Closed)
Patch Set: Fixing typo Created 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // IPC messages for the AEC dump. 5 // IPC messages for the AEC dump.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "content/common/content_export.h" 8 #include "content/common/content_export.h"
9 #include "ipc/ipc_message_macros.h" 9 #include "ipc/ipc_message_macros.h"
10 #include "ipc/ipc_platform_file.h" 10 #include "ipc/ipc_platform_file.h"
(...skipping 16 matching lines...) Expand all
27 // Messages sent from the renderer to the browser. 27 // Messages sent from the renderer to the browser.
28 28
29 // Registers a consumer with the browser. The consumer will then get a file 29 // Registers a consumer with the browser. The consumer will then get a file
30 // handle when the dump is enabled. 30 // handle when the dump is enabled.
31 IPC_MESSAGE_CONTROL1(AecDumpMsg_RegisterAecDumpConsumer, 31 IPC_MESSAGE_CONTROL1(AecDumpMsg_RegisterAecDumpConsumer,
32 int /* id */) 32 int /* id */)
33 33
34 // Unregisters a consumer with the browser. 34 // Unregisters a consumer with the browser.
35 IPC_MESSAGE_CONTROL1(AecDumpMsg_UnregisterAecDumpConsumer, 35 IPC_MESSAGE_CONTROL1(AecDumpMsg_UnregisterAecDumpConsumer,
36 int /* id */) 36 int /* id */)
37
38 // TODO(hlundin): Rename file to reflect expanded use; http://crbug.com/709919.
39 IPC_MESSAGE_CONTROL2(AudioProcessingMsg_EnableAec3,
40 int /* id */,
41 bool /* enable */)
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_process_host_impl.cc ('k') | content/public/browser/render_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698