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

Unified Diff: components/precache/content/precache_manager.h

Issue 666133002: Standardize usage of virtual/override/final in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | « components/power/origin_power_map_factory.h ('k') | components/precache/content/precache_manager_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/precache/content/precache_manager.h
diff --git a/components/precache/content/precache_manager.h b/components/precache/content/precache_manager.h
index 592a3cf08603d8bc5860a42f461b5f19519dc521..56d5d221ff8d0ef153e7cf79095eb4e329910b0f 100644
--- a/components/precache/content/precache_manager.h
+++ b/components/precache/content/precache_manager.h
@@ -43,7 +43,7 @@ class PrecacheManager : public KeyedService,
typedef base::Closure PrecacheCompletionCallback;
explicit PrecacheManager(content::BrowserContext* browser_context);
- virtual ~PrecacheManager();
+ ~PrecacheManager() override;
// Returns true if precaching is enabled as part of a field trial or by the
// command line flag. This method can be called on any thread.
@@ -74,10 +74,10 @@ class PrecacheManager : public KeyedService,
private:
// From KeyedService.
- virtual void Shutdown() override;
+ void Shutdown() override;
// From PrecacheFetcher::PrecacheDelegate.
- virtual void OnDone() override;
+ void OnDone() override;
void OnURLsReceived(const std::list<GURL>& urls);
« no previous file with comments | « components/power/origin_power_map_factory.h ('k') | components/precache/content/precache_manager_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698