Chromium Code Reviews| Index: content/browser/speech/speech_input_manager.h |
| diff --git a/content/browser/speech/speech_input_manager.h b/content/browser/speech/speech_input_manager.h |
| index c690780f924df4bf7c1faaff7a3587c4c8a7fc45..738aaffaa6e631f2f782b46aa62dd06b8a14479f 100644 |
| --- a/content/browser/speech/speech_input_manager.h |
| +++ b/content/browser/speech/speech_input_manager.h |
| @@ -29,7 +29,7 @@ class CONTENT_EXPORT SpeechInputManager : public SpeechRecognizerDelegate { |
| public: |
| virtual void SetRecognitionResult( |
| int caller_id, |
| - const SpeechInputResultArray& result) = 0; |
| + const SpeechInputResult& result) = 0; |
| virtual void DidCompleteRecording(int caller_id) = 0; |
| virtual void DidCompleteRecognition(int caller_id) = 0; |
| @@ -71,9 +71,13 @@ class CONTENT_EXPORT SpeechInputManager : public SpeechRecognizerDelegate { |
| virtual void DidStartReceivingAudio(int caller_id); |
| virtual void SetRecognitionResult(int caller_id, |
| bool error, |
| - const SpeechInputResultArray& result); |
| + const SpeechInputResult& result); |
| virtual void DidCompleteRecording(int caller_id); |
| virtual void DidCompleteRecognition(int caller_id); |
| + virtual void DidSpeechInputStart(int caller_id); |
|
Satish
2011/10/04 20:36:33
please use the new OVERRIDE annotation for all ove
Leandro GraciĆ” Gil
2011/10/05 22:09:00
Done.
|
| + virtual void DidSpeechInputStop(int caller_id); |
| + virtual void OnRecording(int caller_id); |
| + |
| virtual void OnRecognizerError(int caller_id, |
| SpeechRecognizer::ErrorCode error); |
| virtual void DidCompleteEnvironmentEstimation(int caller_id); |