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

Unified Diff: Source/modules/speech/testing/PlatformSpeechSynthesizerMock.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
« no previous file with comments | « Source/modules/speech/SpeechSynthesisUtterance.h ('k') | Source/modules/vibration/NavigatorVibration.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/speech/testing/PlatformSpeechSynthesizerMock.h
diff --git a/Source/modules/speech/testing/PlatformSpeechSynthesizerMock.h b/Source/modules/speech/testing/PlatformSpeechSynthesizerMock.h
index 3378c835b45e5ed3cf574f2898b8eb5da16ba60f..3e3e726727bd92d523330e6c52e215317fa2928f 100644
--- a/Source/modules/speech/testing/PlatformSpeechSynthesizerMock.h
+++ b/Source/modules/speech/testing/PlatformSpeechSynthesizerMock.h
@@ -32,19 +32,19 @@
namespace WebCore {
-class PlatformSpeechSynthesizerMock : public PlatformSpeechSynthesizer {
+class PlatformSpeechSynthesizerMock FINAL : public PlatformSpeechSynthesizer {
public:
static PassOwnPtr<PlatformSpeechSynthesizerMock> create(PlatformSpeechSynthesizerClient*);
virtual ~PlatformSpeechSynthesizerMock();
- virtual void speak(PassRefPtr<PlatformSpeechSynthesisUtterance>);
- virtual void pause();
- virtual void resume();
- virtual void cancel();
+ virtual void speak(PassRefPtr<PlatformSpeechSynthesisUtterance>) OVERRIDE;
+ virtual void pause() OVERRIDE;
+ virtual void resume() OVERRIDE;
+ virtual void cancel() OVERRIDE;
private:
explicit PlatformSpeechSynthesizerMock(PlatformSpeechSynthesizerClient*);
- virtual void initializeVoiceList();
+ virtual void initializeVoiceList() OVERRIDE;
void speakingFinished(Timer<PlatformSpeechSynthesizerMock>*);
Timer<PlatformSpeechSynthesizerMock> m_speakingFinishedTimer;
« no previous file with comments | « Source/modules/speech/SpeechSynthesisUtterance.h ('k') | Source/modules/vibration/NavigatorVibration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698