| Index: Source/modules/speech/SpeechRecognitionEvent.h
|
| diff --git a/Source/modules/speech/SpeechRecognitionEvent.h b/Source/modules/speech/SpeechRecognitionEvent.h
|
| index 984b4532b1c0d4d8c6a59f12c47e24c2579ec006..610c1307b2f8daba0e0494733584bdb78d8716fe 100644
|
| --- a/Source/modules/speech/SpeechRecognitionEvent.h
|
| +++ b/Source/modules/speech/SpeechRecognitionEvent.h
|
| @@ -41,7 +41,7 @@ class SpeechRecognitionEvent final : public Event {
|
| public:
|
| static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> create();
|
| static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> create(const AtomicString&, const SpeechRecognitionEventInit&);
|
| - virtual ~SpeechRecognitionEvent();
|
| + ~SpeechRecognitionEvent() override;
|
|
|
| static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> createResult(unsigned long resultIndex, const HeapVector<Member<SpeechRecognitionResult>>& results);
|
| static PassRefPtrWillBeRawPtr<SpeechRecognitionEvent> createNoMatch(SpeechRecognitionResult*);
|
| @@ -54,7 +54,7 @@ public:
|
| Document* emma() { return nullptr; }
|
|
|
| // Event
|
| - virtual const AtomicString& interfaceName() const override;
|
| + const AtomicString& interfaceName() const override;
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
|
|