Index: Source/modules/speech/testing/PlatformSpeechSynthesizerMock.h |
diff --git a/Source/modules/speech/testing/PlatformSpeechSynthesizerMock.h b/Source/modules/speech/testing/PlatformSpeechSynthesizerMock.h |
index 593139d9d3c4a0eab9592e512b597f01cd798031..8c36f9b53bb0fa85b529611ea017c83497c65fdf 100644 |
--- a/Source/modules/speech/testing/PlatformSpeechSynthesizerMock.h |
+++ b/Source/modules/speech/testing/PlatformSpeechSynthesizerMock.h |
@@ -32,21 +32,21 @@ |
namespace blink { |
-class PlatformSpeechSynthesizerMock FINAL : public PlatformSpeechSynthesizer { |
+class PlatformSpeechSynthesizerMock final : public PlatformSpeechSynthesizer { |
public: |
static PlatformSpeechSynthesizerMock* create(PlatformSpeechSynthesizerClient*); |
virtual ~PlatformSpeechSynthesizerMock(); |
- virtual void speak(PlatformSpeechSynthesisUtterance*) OVERRIDE; |
- virtual void pause() OVERRIDE; |
- virtual void resume() OVERRIDE; |
- virtual void cancel() OVERRIDE; |
+ virtual void speak(PlatformSpeechSynthesisUtterance*) override; |
+ virtual void pause() override; |
+ virtual void resume() override; |
+ virtual void cancel() override; |
- virtual void trace(Visitor*) OVERRIDE; |
+ virtual void trace(Visitor*) override; |
private: |
explicit PlatformSpeechSynthesizerMock(PlatformSpeechSynthesizerClient*); |
- virtual void initializeVoiceList() OVERRIDE; |
+ virtual void initializeVoiceList() override; |
void speakingFinished(Timer<PlatformSpeechSynthesizerMock>*); |
void speakingErrorOccurred(Timer<PlatformSpeechSynthesizerMock>*); |