OLD | NEW |
---|---|
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 Loading... | |
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) Move to new file? | |
hlundin-chromium
2017/04/06 19:09:08
Should this be moved to another file? If so, which
Henrik Grunell
2017/04/10 08:13:28
Keep it in this file, but this file should be rena
hlundin-chromium
2017/04/10 10:10:16
Done.
| |
39 IPC_MESSAGE_CONTROL2(AudioProcessingMsg_EnableAec3, | |
40 int /* id */, | |
41 bool /* enable */) | |
OLD | NEW |