| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SPEECH_RECOGNITION_MESSAGES_H_ |
| 6 #define CONTENT_COMMON_SPEECH_RECOGNITION_MESSAGES_H_ |
| 7 |
| 5 // Multiply-included message file, hence no include guard. | 8 // Multiply-included message file, hence no include guard. |
| 6 | 9 |
| 7 #include <stdint.h> | 10 #include <stdint.h> |
| 8 | 11 |
| 9 #include <string> | 12 #include <string> |
| 10 | 13 |
| 11 #include "base/memory/shared_memory.h" | 14 #include "base/memory/shared_memory.h" |
| 12 #include "base/sync_socket.h" | 15 #include "base/sync_socket.h" |
| 13 #include "content/public/common/speech_recognition_error.h" | 16 #include "content/public/common/speech_recognition_error.h" |
| 14 #include "content/public/common/speech_recognition_grammar.h" | 17 #include "content/public/common/speech_recognition_grammar.h" |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 | 123 |
| 121 IPC_MESSAGE_ROUTED1(SpeechRecognitionMsg_AudioEnded, int /* request_id */) | 124 IPC_MESSAGE_ROUTED1(SpeechRecognitionMsg_AudioEnded, int /* request_id */) |
| 122 | 125 |
| 123 IPC_MESSAGE_ROUTED1(SpeechRecognitionMsg_Ended, int /* request_id */) | 126 IPC_MESSAGE_ROUTED1(SpeechRecognitionMsg_Ended, int /* request_id */) |
| 124 | 127 |
| 125 IPC_MESSAGE_ROUTED4(SpeechRecognitionMsg_AudioReceiverReady, | 128 IPC_MESSAGE_ROUTED4(SpeechRecognitionMsg_AudioReceiverReady, |
| 126 int /* request_id */, | 129 int /* request_id */, |
| 127 media::AudioParameters /* params */, | 130 media::AudioParameters /* params */, |
| 128 base::SharedMemoryHandle /* memory */, | 131 base::SharedMemoryHandle /* memory */, |
| 129 base::SyncSocket::TransitDescriptor /* socket */) | 132 base::SyncSocket::TransitDescriptor /* socket */) |
| 133 |
| 134 #endif // CONTENT_COMMON_SPEECH_RECOGNITION_MESSAGES_H_ |
| OLD | NEW |