| Index: chrome/browser/speech/speech_input_bubble.h
|
| diff --git a/chrome/browser/speech/speech_input_bubble.h b/chrome/browser/speech/speech_input_bubble.h
|
| index 8af12c95e73d08fae917c91699c4d1fc0abc4eb8..644e9952aadaf87650c1faba77235d61d159c8cd 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.
|
|
|