| Index: content/browser/speech/speech_recognizer.h
|
| diff --git a/content/browser/speech/speech_recognizer.h b/content/browser/speech/speech_recognizer.h
|
| index 7df44fec8362f90685171399bc21fdd444e3be21..3d4e85c87db5d7a85915835bd2cac2e88af171a6 100644
|
| --- a/content/browser/speech/speech_recognizer.h
|
| +++ b/content/browser/speech/speech_recognizer.h
|
| @@ -83,7 +83,7 @@ class CONTENT_EXPORT SpeechRecognizer
|
| FSMEvent event;
|
| int audio_error_code;
|
| scoped_refptr<AudioChunk> audio_data;
|
| - SpeechRecognitionResult engine_result;
|
| + SpeechRecognitionResults engine_results;
|
| SpeechRecognitionError engine_error;
|
| };
|
|
|
| @@ -135,8 +135,8 @@ class CONTENT_EXPORT SpeechRecognizer
|
| const uint8* data, uint32 size) OVERRIDE;
|
|
|
| // SpeechRecognitionEngineDelegate methods.
|
| - virtual void OnSpeechRecognitionEngineResult(
|
| - const SpeechRecognitionResult& result) OVERRIDE;
|
| + virtual void OnSpeechRecognitionEngineResults(
|
| + const SpeechRecognitionResults& results) OVERRIDE;
|
| virtual void OnSpeechRecognitionEngineError(
|
| const SpeechRecognitionError& error) OVERRIDE;
|
|
|
|
|