| Index: Source/core/loader/appcache/ApplicationCache.h
|
| diff --git a/Source/core/loader/appcache/ApplicationCache.h b/Source/core/loader/appcache/ApplicationCache.h
|
| index 9e129eee45c2b275ea70747ac7ff93c08a5f71ed..c889831f3da1dc4e622185fe171c463d873fd78a 100644
|
| --- a/Source/core/loader/appcache/ApplicationCache.h
|
| +++ b/Source/core/loader/appcache/ApplicationCache.h
|
| @@ -48,14 +48,14 @@ public:
|
| {
|
| return new ApplicationCache(frame);
|
| }
|
| - virtual ~ApplicationCache()
|
| + ~ApplicationCache() override
|
| {
|
| #if !ENABLE(OILPAN)
|
| ASSERT(!m_frame);
|
| #endif
|
| }
|
|
|
| - virtual void willDestroyGlobalObjectInFrame() override;
|
| + void willDestroyGlobalObjectInFrame() override;
|
|
|
| unsigned short status() const;
|
| void update(ExceptionState&);
|
| @@ -73,8 +73,8 @@ public:
|
| DEFINE_ATTRIBUTE_EVENT_LISTENER(cached);
|
| DEFINE_ATTRIBUTE_EVENT_LISTENER(obsolete);
|
|
|
| - virtual const AtomicString& interfaceName() const override;
|
| - virtual ExecutionContext* executionContext() const override;
|
| + const AtomicString& interfaceName() const override;
|
| + ExecutionContext* executionContext() const override;
|
|
|
| static const AtomicString& toEventType(ApplicationCacheHost::EventID);
|
|
|
|
|