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

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

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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/modules/speech/SpeechRecognitionEvent.h ('k') | Source/modules/speech/SpeechSynthesisEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/speech/SpeechSynthesis.h
diff --git a/Source/modules/speech/SpeechSynthesis.h b/Source/modules/speech/SpeechSynthesis.h
index 627d6ed05d63c8e1650cc41831f6c97de2157d71..7a1b6a18862e417c506f327612f95677999292d7 100644
--- a/Source/modules/speech/SpeechSynthesis.h
+++ b/Source/modules/speech/SpeechSynthesis.h
@@ -63,7 +63,7 @@ public:
DEFINE_ATTRIBUTE_EVENT_LISTENER(voiceschanged);
- virtual ExecutionContext* executionContext() const override;
+ ExecutionContext* executionContext() const override;
DECLARE_VIRTUAL_TRACE();
@@ -71,13 +71,13 @@ private:
explicit SpeechSynthesis(ExecutionContext*);
// PlatformSpeechSynthesizerClient override methods.
- virtual void voicesDidChange() override;
- virtual void didStartSpeaking(PlatformSpeechSynthesisUtterance*) override;
- virtual void didPauseSpeaking(PlatformSpeechSynthesisUtterance*) override;
- virtual void didResumeSpeaking(PlatformSpeechSynthesisUtterance*) override;
- virtual void didFinishSpeaking(PlatformSpeechSynthesisUtterance*) override;
- virtual void speakingErrorOccurred(PlatformSpeechSynthesisUtterance*) override;
- virtual void boundaryEventOccurred(PlatformSpeechSynthesisUtterance*, SpeechBoundary, unsigned charIndex) override;
+ void voicesDidChange() override;
+ void didStartSpeaking(PlatformSpeechSynthesisUtterance*) override;
+ void didPauseSpeaking(PlatformSpeechSynthesisUtterance*) override;
+ void didResumeSpeaking(PlatformSpeechSynthesisUtterance*) override;
+ void didFinishSpeaking(PlatformSpeechSynthesisUtterance*) override;
+ void speakingErrorOccurred(PlatformSpeechSynthesisUtterance*) override;
+ void boundaryEventOccurred(PlatformSpeechSynthesisUtterance*, SpeechBoundary, unsigned charIndex) override;
void startSpeakingImmediately();
void handleSpeakingCompleted(SpeechSynthesisUtterance*, bool errorOccurred);
@@ -92,7 +92,7 @@ private:
bool m_isPaused;
// EventTarget
- virtual const AtomicString& interfaceName() const override;
+ const AtomicString& interfaceName() const override;
};
} // namespace blink
« no previous file with comments | « Source/modules/speech/SpeechRecognitionEvent.h ('k') | Source/modules/speech/SpeechSynthesisEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698