summaryrefslogtreecommitdiffstats
path: root/content/common/speech_recognition_messages.h
diff options
context:
space:
mode:
authortasak@google.com <tasak@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-03 04:18:50 +0000
committertasak@google.com <tasak@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-03 04:18:50 +0000
commit9469fc0d408c2dcbc3e50dfc4f2a0f24da46fdce (patch)
treeda436bcb98ae52609dd0c23bf1034338e6c1757a /content/common/speech_recognition_messages.h
parent054bd9d26eb1f945d4b7c18e4a30c8c5354bcda8 (diff)
downloadchromium_src-9469fc0d408c2dcbc3e50dfc4f2a0f24da46fdce.zip
chromium_src-9469fc0d408c2dcbc3e50dfc4f2a0f24da46fdce.tar.gz
chromium_src-9469fc0d408c2dcbc3e50dfc4f2a0f24da46fdce.tar.bz2
Revert 170668
Needs to revert this because its WebKit patch was unrolled. (See r136319, unreviewed, rolling out r136236). > Update the Speech Api to support array(s) of result items > instead of a single item at a time. > > BUG=143124 > TEST=Covered by content_unittests > > Review URL: https://chromiumcodereview.appspot.com/11421103 TBR=tommi@chromium.org Review URL: https://codereview.chromium.org/11416310 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170701 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/speech_recognition_messages.h')
-rw-r--r--content/common/speech_recognition_messages.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/common/speech_recognition_messages.h b/content/common/speech_recognition_messages.h
index f68a48d..593f877 100644
--- a/content/common/speech_recognition_messages.h
+++ b/content/common/speech_recognition_messages.h
@@ -79,9 +79,9 @@ IPC_MESSAGE_CONTROL2(InputTagSpeechHostMsg_StopRecording,
// Browser -> Renderer messages.
// Relays a speech recognition result, either partial or final.
-IPC_MESSAGE_ROUTED2(InputTagSpeechMsg_SetRecognitionResults,
+IPC_MESSAGE_ROUTED2(InputTagSpeechMsg_SetRecognitionResult,
int /* request_id */,
- content::SpeechRecognitionResults /* results */)
+ content::SpeechRecognitionResult /* result */)
// Indicates that speech recognizer has stopped recording and started
// recognition.
@@ -149,7 +149,7 @@ IPC_MESSAGE_CONTROL2(SpeechRecognitionHostMsg_StopCaptureRequest,
// events defined in content/public/browser/speech_recognition_event_listener.h.
IPC_MESSAGE_ROUTED2(SpeechRecognitionMsg_ResultRetrieved,
int /* request_id */,
- content::SpeechRecognitionResults /* results */)
+ content::SpeechRecognitionResult /* result */)
IPC_MESSAGE_ROUTED2(SpeechRecognitionMsg_ErrorOccurred,
int /* request_id */,