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

Unified Diff: Source/modules/speech/SpeechRecognition.h

Issue 135653002: Update modules classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove change to web/ 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
Index: Source/modules/speech/SpeechRecognition.h
diff --git a/Source/modules/speech/SpeechRecognition.h b/Source/modules/speech/SpeechRecognition.h
index 4b6d0835d6927f7572b0db69b102d12ac2da95dd..821f38b40b2e6ea4be08fe90768154955b81d7b0 100644
--- a/Source/modules/speech/SpeechRecognition.h
+++ b/Source/modules/speech/SpeechRecognition.h
@@ -44,11 +44,11 @@ class SpeechRecognitionError;
class SpeechRecognitionResult;
class SpeechRecognitionResultList;
-class SpeechRecognition : public RefCounted<SpeechRecognition>, public ScriptWrappable, public ActiveDOMObject, public EventTargetWithInlineData {
+class SpeechRecognition FINAL : public RefCounted<SpeechRecognition>, public ScriptWrappable, public ActiveDOMObject, public EventTargetWithInlineData {
REFCOUNTED_EVENT_TARGET(SpeechRecognition);
public:
static PassRefPtr<SpeechRecognition> create(ExecutionContext*);
- ~SpeechRecognition();
+ virtual ~SpeechRecognition();
// Attributes.
PassRefPtr<SpeechGrammarList> grammars() { return m_grammars; }
« no previous file with comments | « Source/modules/speech/DOMWindowSpeechSynthesis.h ('k') | Source/modules/speech/SpeechRecognitionController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698