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

Unified Diff: chrome/browser/io_thread.h

Issue 648653003: Standardize usage of virtual/override/final in chrome/browser/ (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 | « chrome/browser/invalidation/ticl_profile_settings_provider.h ('k') | chrome/browser/io_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/io_thread.h
diff --git a/chrome/browser/io_thread.h b/chrome/browser/io_thread.h
index b46b4935ddae4e4790c94a949b4ff6f0ce32344d..f0b5220ff694b7db205c5eb90d2c200a898bafa2 100644
--- a/chrome/browser/io_thread.h
+++ b/chrome/browser/io_thread.h
@@ -213,7 +213,7 @@ class IOThread : public content::BrowserThreadDelegate {
ChromeNetLog* net_log,
extensions::EventRouterForwarder* extension_event_router_forwarder);
- virtual ~IOThread();
+ ~IOThread() override;
static void RegisterPrefs(PrefRegistrySimple* registry);
@@ -255,9 +255,9 @@ class IOThread : public content::BrowserThreadDelegate {
// BrowserThreadDelegate implementation, runs on the IO thread.
// This handles initialization and destruction of state that must
// live on the IO thread.
- virtual void Init() override;
- virtual void InitAsync() override;
- virtual void CleanUp() override;
+ void Init() override;
+ void InitAsync() override;
+ void CleanUp() override;
// Initializes |params| based on the settings in |globals|.
static void InitializeNetworkSessionParamsFromGlobals(
« no previous file with comments | « chrome/browser/invalidation/ticl_profile_settings_provider.h ('k') | chrome/browser/io_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698