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

Unified Diff: Source/web/ApplicationCacheHostInternal.h

Issue 135753002: Update web classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 11 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 | « no previous file | Source/web/AssociatedURLLoader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ApplicationCacheHostInternal.h
diff --git a/Source/web/ApplicationCacheHostInternal.h b/Source/web/ApplicationCacheHostInternal.h
index 62911246248273a67b08d58e53338c374c3dd24b..c77f922fff73a898dfe018c39fd2e69970bd84f2 100644
--- a/Source/web/ApplicationCacheHostInternal.h
+++ b/Source/web/ApplicationCacheHostInternal.h
@@ -37,7 +37,7 @@
namespace WebCore {
-class ApplicationCacheHostInternal : public blink::WebApplicationCacheHostClient {
+class ApplicationCacheHostInternal FINAL : public blink::WebApplicationCacheHostClient {
public:
ApplicationCacheHostInternal(ApplicationCacheHost* host)
: m_innerHost(host)
@@ -47,17 +47,17 @@ public:
m_outerHost = adoptPtr(webFrame->client()->createApplicationCacheHost(webFrame, this));
}
- virtual void didChangeCacheAssociation()
+ virtual void didChangeCacheAssociation() OVERRIDE
{
// FIXME: Prod the inspector to update it's notion of what cache the page is using.
}
- virtual void notifyEventListener(blink::WebApplicationCacheHost::EventID eventID)
+ virtual void notifyEventListener(blink::WebApplicationCacheHost::EventID eventID) OVERRIDE
{
m_innerHost->notifyApplicationCache(static_cast<ApplicationCacheHost::EventID>(eventID), 0, 0);
}
- virtual void notifyProgressEventListener(const blink::WebURL&, int progressTotal, int progressDone)
+ virtual void notifyProgressEventListener(const blink::WebURL&, int progressTotal, int progressDone) OVERRIDE
{
m_innerHost->notifyApplicationCache(ApplicationCacheHost::PROGRESS_EVENT, progressTotal, progressDone);
}
« no previous file with comments | « no previous file | Source/web/AssociatedURLLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698