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
3 // found in the LICENSE file.
5 // Multiply-included message file, hence no include guard.
9 #include "content/public/common/speech_recognition_error.h"
10 #include "content/public/common/speech_recognition_grammar.h"
11 #include "content/public/common/speech_recognition_result.h"
12 #include "ipc/ipc_message_macros.h"
13 #include "ipc/ipc_param_traits.h"
14 #include "ui/gfx/rect.h"
16 #define IPC_MESSAGE_START SpeechRecognitionMsgStart
18 IPC_ENUM_TRAITS_MAX_VALUE(content::SpeechAudioErrorDetails
,
19 content::SPEECH_AUDIO_ERROR_DETAILS_LAST
)
20 IPC_ENUM_TRAITS_MAX_VALUE(content::SpeechRecognitionErrorCode
,
21 content::SPEECH_RECOGNITION_ERROR_LAST
)
23 IPC_STRUCT_TRAITS_BEGIN(content::SpeechRecognitionError
)
24 IPC_STRUCT_TRAITS_MEMBER(code
)
25 IPC_STRUCT_TRAITS_MEMBER(details
)
26 IPC_STRUCT_TRAITS_END()
28 IPC_STRUCT_TRAITS_BEGIN(content::SpeechRecognitionHypothesis
)
29 IPC_STRUCT_TRAITS_MEMBER(utterance
)
30 IPC_STRUCT_TRAITS_MEMBER(confidence
)
31 IPC_STRUCT_TRAITS_END()
33 IPC_STRUCT_TRAITS_BEGIN(content::SpeechRecognitionResult
)
34 IPC_STRUCT_TRAITS_MEMBER(is_provisional
)
35 IPC_STRUCT_TRAITS_MEMBER(hypotheses
)
36 IPC_STRUCT_TRAITS_END()
38 IPC_STRUCT_TRAITS_BEGIN(content::SpeechRecognitionGrammar
)
39 IPC_STRUCT_TRAITS_MEMBER(url
)
40 IPC_STRUCT_TRAITS_MEMBER(weight
)
41 IPC_STRUCT_TRAITS_END()
43 // ------- Messages for Speech JS APIs (SpeechRecognitionDispatcher) ----------
45 // Renderer -> Browser messages.
47 // Used to start a speech recognition session.
48 IPC_STRUCT_BEGIN(SpeechRecognitionHostMsg_StartRequest_Params
)
49 // The render view requesting speech recognition.
50 IPC_STRUCT_MEMBER(int, render_view_id
)
51 // Unique ID associated with the JS object making the calls.
52 IPC_STRUCT_MEMBER(int, request_id
)
53 // Language to use for speech recognition.
54 IPC_STRUCT_MEMBER(std::string
, language
)
55 // Speech grammars to use.
56 IPC_STRUCT_MEMBER(content::SpeechRecognitionGrammarArray
, grammars
)
57 // URL of the page (or iframe if applicable).
58 IPC_STRUCT_MEMBER(std::string
, origin_url
)
59 // Maximum number of hypotheses allowed for each results.
60 IPC_STRUCT_MEMBER(uint32
, max_hypotheses
)
61 // Whether the user requested continuous recognition or not.
62 IPC_STRUCT_MEMBER(bool, continuous
)
63 // Whether the user requested interim results or not.
64 IPC_STRUCT_MEMBER(bool, interim_results
)
68 // Requests the speech recognition service to start speech recognition.
69 IPC_MESSAGE_CONTROL1(SpeechRecognitionHostMsg_StartRequest
,
70 SpeechRecognitionHostMsg_StartRequest_Params
)
72 // Requests the speech recognition service to abort speech recognition on
73 // behalf of the given |render_view_id|. If speech recognition is not happening
74 // or is happening on behalf of some other render view, this call does nothing.
75 IPC_MESSAGE_CONTROL2(SpeechRecognitionHostMsg_AbortRequest
,
76 int /* render_view_id */,
79 // Requests the speech recognition service to stop audio capture on behalf of
80 // the given |render_view_id|. Any audio recorded so far will be fed to the
81 // speech recognizer. If speech recognition is not happening nor or is
82 // happening on behalf of some other render view, this call does nothing.
83 IPC_MESSAGE_CONTROL2(SpeechRecognitionHostMsg_StopCaptureRequest
,
84 int /* render_view_id */,
87 // Browser -> Renderer messages.
89 // The messages below follow exactly the same semantic of the corresponding
90 // events defined in content/public/browser/speech_recognition_event_listener.h.
91 IPC_MESSAGE_ROUTED2(SpeechRecognitionMsg_ResultRetrieved
,
93 content::SpeechRecognitionResults
/* results */)
95 IPC_MESSAGE_ROUTED2(SpeechRecognitionMsg_ErrorOccurred
,
97 content::SpeechRecognitionError
/* error */)
99 IPC_MESSAGE_ROUTED1(SpeechRecognitionMsg_Started
, int /* request_id */)
101 IPC_MESSAGE_ROUTED1(SpeechRecognitionMsg_AudioStarted
, int /* request_id */)
103 IPC_MESSAGE_ROUTED1(SpeechRecognitionMsg_SoundStarted
, int /* request_id */)
105 IPC_MESSAGE_ROUTED1(SpeechRecognitionMsg_SoundEnded
, int /* request_id */)
107 IPC_MESSAGE_ROUTED1(SpeechRecognitionMsg_AudioEnded
, int /* request_id */)
109 IPC_MESSAGE_ROUTED1(SpeechRecognitionMsg_Ended
, int /* request_id */)