| Index: Source/modules/speech/SpeechSynthesisUtterance.h
|
| diff --git a/Source/modules/speech/SpeechSynthesisUtterance.h b/Source/modules/speech/SpeechSynthesisUtterance.h
|
| index 5b05ba94a9013c5018ddeb7a8418983012db5eae..b040fddb11a1600b49ec01dc785917829d0e4c78 100644
|
| --- a/Source/modules/speech/SpeechSynthesisUtterance.h
|
| +++ b/Source/modules/speech/SpeechSynthesisUtterance.h
|
| @@ -41,7 +41,7 @@ class SpeechSynthesisUtterance final : public RefCountedGarbageCollectedEventTar
|
| public:
|
| static SpeechSynthesisUtterance* create(ExecutionContext*, const String&);
|
|
|
| - virtual ~SpeechSynthesisUtterance();
|
| + ~SpeechSynthesisUtterance() override;
|
|
|
| const String& text() const { return m_platformUtterance->text(); }
|
| void setText(const String& text) { m_platformUtterance->setText(text); }
|
| @@ -72,7 +72,7 @@ public:
|
| DEFINE_ATTRIBUTE_EVENT_LISTENER(mark);
|
| DEFINE_ATTRIBUTE_EVENT_LISTENER(boundary);
|
|
|
| - virtual ExecutionContext* executionContext() const override;
|
| + ExecutionContext* executionContext() const override;
|
|
|
| PlatformSpeechSynthesisUtterance* platformUtterance() const { return m_platformUtterance; }
|
|
|
| @@ -82,7 +82,7 @@ private:
|
| SpeechSynthesisUtterance(ExecutionContext*, const String&);
|
|
|
| // EventTarget
|
| - virtual const AtomicString& interfaceName() const override;
|
| + const AtomicString& interfaceName() const override;
|
|
|
| Member<PlatformSpeechSynthesisUtterance> m_platformUtterance;
|
| Member<SpeechSynthesisVoice> m_voice;
|
|
|