Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2367)

Unified Diff: chrome/browser/speech/chrome_speech_input_manager.h

Issue 8137005: Applying changes to the existing speech input code to support the extension API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: mac bot fix. Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/speech/chrome_speech_input_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/speech/chrome_speech_input_manager.h
diff --git a/chrome/browser/speech/chrome_speech_input_manager.h b/chrome/browser/speech/chrome_speech_input_manager.h
index 09b28ed3f74f81240103ce58a584f2b90eb0d3cb..7cf90685771231034448a49181ff0f258ecbc5d1 100644
--- a/chrome/browser/speech/chrome_speech_input_manager.h
+++ b/chrome/browser/speech/chrome_speech_input_manager.h
@@ -21,27 +21,28 @@ class ChromeSpeechInputManager : public SpeechInputManager,
// SpeechInputBubbleController::Delegate methods.
virtual void InfoBubbleButtonClicked(int caller_id,
- SpeechInputBubble::Button button);
- virtual void InfoBubbleFocusChanged(int caller_id);
+ SpeechInputBubble::Button button)
+ OVERRIDE;
+ virtual void InfoBubbleFocusChanged(int caller_id) OVERRIDE;
protected:
// SpeechInputManager methods.
virtual void GetRequestInfo(bool* can_report_metrics,
- std::string* request_info);
+ std::string* request_info) OVERRIDE;
virtual void ShowRecognitionRequested(int caller_id,
int render_process_id,
int render_view_id,
- const gfx::Rect& element_rect);
- virtual void ShowWarmUp(int caller_id);
- virtual void ShowRecognizing(int caller_id);
- virtual void ShowRecording(int caller_id);
+ const gfx::Rect& element_rect) OVERRIDE;
+ virtual void ShowWarmUp(int caller_id) OVERRIDE;
+ virtual void ShowRecognizing(int caller_id) OVERRIDE;
+ virtual void ShowRecording(int caller_id) OVERRIDE;
virtual void ShowInputVolume(int caller_id,
float volume,
- float noise_volume);
- virtual void ShowNoMicError(int caller_id);
+ float noise_volume) OVERRIDE;
+ virtual void ShowNoMicError(int caller_id) OVERRIDE;
virtual void ShowRecognizerError(int caller_id,
- SpeechRecognizer::ErrorCode error);
- virtual void DoClose(int caller_id);
+ SpeechInputError error) OVERRIDE;
+ virtual void DoClose(int caller_id) OVERRIDE;
private:
class OptionalRequestInfo;
« no previous file with comments | « no previous file | chrome/browser/speech/chrome_speech_input_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698