Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1479)

Unified Diff: Source/core/loader/appcache/ApplicationCache.h

Issue 1229743005: Fix virtual/override/final usage in Source/core/{fetch,loader,streams,xmlhttprequest}/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/loader/WorkerThreadableLoader.h ('k') | Source/core/loader/appcache/ApplicationCacheHost.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « Source/core/loader/WorkerThreadableLoader.h ('k') | Source/core/loader/appcache/ApplicationCacheHost.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698