| Index: Source/core/speech/SpeechInput.h
|
| diff --git a/Source/core/speech/SpeechInput.h b/Source/core/speech/SpeechInput.h
|
| index dcc717137bfec36a62bdbcfe379095d254db0db5..338111ad74427c00ef2148ea95f322edd747f8f9 100644
|
| --- a/Source/core/speech/SpeechInput.h
|
| +++ b/Source/core/speech/SpeechInput.h
|
| @@ -48,7 +48,7 @@ class SpeechInputListener;
|
| // This class connects the input elements requiring speech input with the platform specific
|
| // speech recognition engine. It provides methods for the input elements to activate speech
|
| // recognition and methods for the speech recognition engine to return back the results.
|
| -class SpeechInput : public SpeechInputListener, public Supplement<Page> {
|
| +class SpeechInput FINAL : public SpeechInputListener, public Supplement<Page> {
|
| WTF_MAKE_NONCOPYABLE(SpeechInput);
|
| public:
|
| virtual ~SpeechInput();
|
| @@ -71,9 +71,9 @@ public:
|
| void cancelRecognition(int);
|
|
|
| // SpeechInputListener methods.
|
| - virtual void didCompleteRecording(int);
|
| - virtual void didCompleteRecognition(int);
|
| - virtual void setRecognitionResult(int, const SpeechInputResultArray&);
|
| + virtual void didCompleteRecording(int) OVERRIDE;
|
| + virtual void didCompleteRecognition(int) OVERRIDE;
|
| + virtual void setRecognitionResult(int, const SpeechInputResultArray&) OVERRIDE;
|
|
|
| private:
|
| explicit SpeechInput(SpeechInputClient*);
|
|
|