| 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 #ifndef CONTENT_COMMON_MEDIA_AEC_DUMP_MESSAGES_H_ |
| 6 #define CONTENT_COMMON_MEDIA_AEC_DUMP_MESSAGES_H_ |
| 7 |
| 5 // IPC messages for the AEC dump. | 8 // IPC messages for the AEC dump. |
| 6 // Multiply-included message file, hence no include guard. | 9 // Multiply-included message file, hence no include guard. |
| 7 | 10 |
| 8 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
| 9 #include "ipc/ipc_message_macros.h" | 12 #include "ipc/ipc_message_macros.h" |
| 10 #include "ipc/ipc_platform_file.h" | 13 #include "ipc/ipc_platform_file.h" |
| 11 | 14 |
| 12 #undef IPC_MESSAGE_EXPORT | 15 #undef IPC_MESSAGE_EXPORT |
| 13 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 16 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
| 14 #define IPC_MESSAGE_START AecDumpMsgStart | 17 #define IPC_MESSAGE_START AecDumpMsgStart |
| (...skipping 17 matching lines...) Expand all Loading... |
| 32 int /* id */) | 35 int /* id */) |
| 33 | 36 |
| 34 // Unregisters a consumer with the browser. | 37 // Unregisters a consumer with the browser. |
| 35 IPC_MESSAGE_CONTROL1(AecDumpMsg_UnregisterAecDumpConsumer, | 38 IPC_MESSAGE_CONTROL1(AecDumpMsg_UnregisterAecDumpConsumer, |
| 36 int /* id */) | 39 int /* id */) |
| 37 | 40 |
| 38 // TODO(hlundin): Rename file to reflect expanded use; http://crbug.com/709919. | 41 // TODO(hlundin): Rename file to reflect expanded use; http://crbug.com/709919. |
| 39 IPC_MESSAGE_CONTROL2(AudioProcessingMsg_EnableAec3, | 42 IPC_MESSAGE_CONTROL2(AudioProcessingMsg_EnableAec3, |
| 40 int /* id */, | 43 int /* id */, |
| 41 bool /* enable */) | 44 bool /* enable */) |
| 45 |
| 46 #endif // CONTENT_COMMON_MEDIA_AEC_DUMP_MESSAGES_H_ |
| OLD | NEW |