Index: content/browser/speech/speech_recognition_dispatcher_host.cc |
=================================================================== |
--- content/browser/speech/speech_recognition_dispatcher_host.cc (revision 170700) |
+++ content/browser/speech/speech_recognition_dispatcher_host.cc (working copy) |
@@ -161,14 +161,14 @@ |
context.request_id)); |
} |
-void SpeechRecognitionDispatcherHost::OnRecognitionResults( |
+void SpeechRecognitionDispatcherHost::OnRecognitionResult( |
int session_id, |
- const SpeechRecognitionResults& results) { |
+ const SpeechRecognitionResult& result) { |
const SpeechRecognitionSessionContext& context = |
manager()->GetSessionContext(session_id); |
Send(new SpeechRecognitionMsg_ResultRetrieved(context.render_view_id, |
context.request_id, |
- results)); |
+ result)); |
} |
void SpeechRecognitionDispatcherHost::OnRecognitionError( |