Index: Source/modules/speech/SpeechSynthesisUtterance.h |
diff --git a/Source/modules/speech/SpeechSynthesisUtterance.h b/Source/modules/speech/SpeechSynthesisUtterance.h |
index 269f60a1572d40145736d0cd9cb2b78911546e74..5eee8c4cfa3f16c1ece92dda1043a3fcb71d4f1e 100644 |
--- a/Source/modules/speech/SpeechSynthesisUtterance.h |
+++ b/Source/modules/speech/SpeechSynthesisUtterance.h |
@@ -34,7 +34,7 @@ |
namespace blink { |
-class SpeechSynthesisUtterance FINAL : public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<SpeechSynthesisUtterance>, public PlatformSpeechSynthesisUtteranceClient, public ContextLifecycleObserver, public EventTargetWithInlineData { |
+class SpeechSynthesisUtterance final : public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<SpeechSynthesisUtterance>, public PlatformSpeechSynthesisUtteranceClient, public ContextLifecycleObserver, public EventTargetWithInlineData { |
DEFINE_EVENT_TARGET_REFCOUNTING_WILL_BE_REMOVED(RefCountedGarbageCollected<SpeechSynthesisUtterance>); |
DEFINE_WRAPPERTYPEINFO(); |
USING_GARBAGE_COLLECTED_MIXIN(SpeechSynthesisUtterance); |
@@ -72,17 +72,17 @@ public: |
DEFINE_ATTRIBUTE_EVENT_LISTENER(mark); |
DEFINE_ATTRIBUTE_EVENT_LISTENER(boundary); |
- virtual ExecutionContext* executionContext() const OVERRIDE; |
+ virtual ExecutionContext* executionContext() const override; |
PlatformSpeechSynthesisUtterance* platformUtterance() const { return m_platformUtterance; } |
- virtual void trace(Visitor*) OVERRIDE; |
+ virtual void trace(Visitor*) override; |
private: |
SpeechSynthesisUtterance(ExecutionContext*, const String&); |
// EventTarget |
- virtual const AtomicString& interfaceName() const OVERRIDE; |
+ virtual const AtomicString& interfaceName() const override; |
Member<PlatformSpeechSynthesisUtterance> m_platformUtterance; |
Member<SpeechSynthesisVoice> m_voice; |