Chromium Code Reviews| Index: content/browser/speech/input_tag_speech_dispatcher_host.cc |
| diff --git a/content/browser/speech/input_tag_speech_dispatcher_host.cc b/content/browser/speech/input_tag_speech_dispatcher_host.cc |
| index 32ba964fa07304f180815af5dd0e13e1f4a7796f..14abf5c58d0da0254b012ecae21c1e410c5cfffc 100644 |
| --- a/content/browser/speech/input_tag_speech_dispatcher_host.cc |
| +++ b/content/browser/speech/input_tag_speech_dispatcher_host.cc |
| @@ -117,18 +117,18 @@ void InputTagSpeechDispatcherHost::OnStopRecording(int render_view_id, |
| } |
| // -------- SpeechRecognitionEventListener interface implementation ----------- |
| -void InputTagSpeechDispatcherHost::OnRecognitionResult( |
| +void InputTagSpeechDispatcherHost::OnRecognitionResults( |
| int session_id, |
| - const SpeechRecognitionResult& result) { |
| + const SpeechRecognitionResults& results) { |
| VLOG(1) << "InputTagSpeechDispatcherHost::OnRecognitionResult enter"; |
|
hans
2012/11/28 14:15:35
ultra nit: while here, we might as well update thi
tommi (sloooow) - chröme
2012/11/29 09:30:20
Done.
|
| const SpeechRecognitionSessionContext& context = |
| manager()->GetSessionContext(session_id); |
| - Send(new InputTagSpeechMsg_SetRecognitionResult( |
| + Send(new InputTagSpeechMsg_SetRecognitionResults( |
| context.render_view_id, |
| context.request_id, |
| - result)); |
| + results)); |
| VLOG(1) << "InputTagSpeechDispatcherHost::OnRecognitionResult exit"; |
| } |