| Index: Source/core/events/ApplicationCacheErrorEvent.h
|
| diff --git a/Source/core/events/ApplicationCacheErrorEvent.h b/Source/core/events/ApplicationCacheErrorEvent.h
|
| index f44ecb80d586dfb9f136c1ed1ce30fe3c0b12214..e71909d76ff3344b252fe64f235bd8295c3dbce3 100644
|
| --- a/Source/core/events/ApplicationCacheErrorEvent.h
|
| +++ b/Source/core/events/ApplicationCacheErrorEvent.h
|
| @@ -15,7 +15,7 @@ namespace blink {
|
| class ApplicationCacheErrorEvent final : public Event {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - virtual ~ApplicationCacheErrorEvent();
|
| + ~ApplicationCacheErrorEvent() override;
|
|
|
| static PassRefPtrWillBeRawPtr<ApplicationCacheErrorEvent> create()
|
| {
|
| @@ -37,7 +37,7 @@ public:
|
| int status() const { return m_status; }
|
| const String& message() const { return m_message; }
|
|
|
| - virtual const AtomicString& interfaceName() const override { return EventNames::ApplicationCacheErrorEvent; }
|
| + const AtomicString& interfaceName() const override { return EventNames::ApplicationCacheErrorEvent; }
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
|
|