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

Unified Diff: Source/core/speech/SpeechInput.h

Issue 132233004: Update remaining core classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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 | « Source/core/plugins/PluginView.h ('k') | Source/core/speech/SpeechInputEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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*);
« no previous file with comments | « Source/core/plugins/PluginView.h ('k') | Source/core/speech/SpeechInputEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698