Index: Source/modules/speech/SpeechSynthesisEvent.h |
diff --git a/Source/modules/speech/SpeechSynthesisEvent.h b/Source/modules/speech/SpeechSynthesisEvent.h |
index 1416976fce6fedde5fcf230185d3ef73308ec0a7..89ed746412c41848d9a098db190a42f7dbeb7e35 100644 |
--- a/Source/modules/speech/SpeechSynthesisEvent.h |
+++ b/Source/modules/speech/SpeechSynthesisEvent.h |
@@ -30,7 +30,7 @@ |
namespace blink { |
-class SpeechSynthesisEvent FINAL : public Event { |
+class SpeechSynthesisEvent final : public Event { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
static PassRefPtrWillBeRawPtr<SpeechSynthesisEvent> create(); |
@@ -40,9 +40,9 @@ public: |
float elapsedTime() const { return m_elapsedTime; } |
const String& name() const { return m_name; } |
- virtual const AtomicString& interfaceName() const OVERRIDE { return EventNames::SpeechSynthesisEvent; } |
+ virtual const AtomicString& interfaceName() const override { return EventNames::SpeechSynthesisEvent; } |
- virtual void trace(Visitor* visitor) OVERRIDE |
+ virtual void trace(Visitor* visitor) override |
{ |
Event::trace(visitor); |
} |