summaryrefslogtreecommitdiffstats
path: root/chrome/browser/speech
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/speech')
-rw-r--r--chrome/browser/speech/speech_input_bubble.h12
-rw-r--r--chrome/browser/speech/speech_input_bubble_controller.h7
2 files changed, 10 insertions, 9 deletions
diff --git a/chrome/browser/speech/speech_input_bubble.h b/chrome/browser/speech/speech_input_bubble.h
index 8af12c9..644e995 100644
--- a/chrome/browser/speech/speech_input_bubble.h
+++ b/chrome/browser/speech/speech_input_bubble.h
@@ -133,12 +133,12 @@ class SpeechInputBubbleBase : public SpeechInputBubble {
virtual ~SpeechInputBubbleBase();
// SpeechInputBubble methods
- virtual void SetWarmUpMode();
- virtual void SetRecordingMode();
- virtual void SetRecognizingMode();
- virtual void SetMessage(const string16& text);
- virtual void SetInputVolume(float volume, float noise_volume);
- virtual TabContents* tab_contents();
+ virtual void SetWarmUpMode() OVERRIDE;
+ virtual void SetRecordingMode() OVERRIDE;
+ virtual void SetRecognizingMode() OVERRIDE;
+ virtual void SetMessage(const string16& text) OVERRIDE;
+ virtual void SetInputVolume(float volume, float noise_volume) OVERRIDE;
+ virtual TabContents* tab_contents() OVERRIDE;
protected:
// Updates the platform specific UI layout for the current display mode.
diff --git a/chrome/browser/speech/speech_input_bubble_controller.h b/chrome/browser/speech/speech_input_bubble_controller.h
index b0f1baf..39a0293 100644
--- a/chrome/browser/speech/speech_input_bubble_controller.h
+++ b/chrome/browser/speech/speech_input_bubble_controller.h
@@ -80,13 +80,14 @@ class SpeechInputBubbleController
void CloseBubble(int caller_id);
// SpeechInputBubble::Delegate methods.
- virtual void InfoBubbleButtonClicked(SpeechInputBubble::Button button);
- virtual void InfoBubbleFocusChanged();
+ virtual void InfoBubbleButtonClicked(
+ SpeechInputBubble::Button button) OVERRIDE;
+ virtual void InfoBubbleFocusChanged() OVERRIDE;
// content::NotificationObserver implementation.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details);
+ const content::NotificationDetails& details) OVERRIDE;
private:
// The various calls received by this object and handled in the UI thread.