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

Unified Diff: chrome/browser/background/background_mode_manager.h

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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
Index: chrome/browser/background/background_mode_manager.h
diff --git a/chrome/browser/background/background_mode_manager.h b/chrome/browser/background/background_mode_manager.h
index 538ea52b49089763d1491916a7ffa10fabc57a54..1f2c4bacaa31ae6a07f0f73160f9a3f42ab35e90 100644
--- a/chrome/browser/background/background_mode_manager.h
+++ b/chrome/browser/background/background_mode_manager.h
@@ -125,7 +125,7 @@ class BackgroundModeManager
scoped_ptr<BackgroundApplicationListModel> applications_;
// Overrides from StatusIconMenuModel::Delegate implementation.
- virtual void ExecuteCommand(int command_id, int event_flags) OVERRIDE;
+ virtual void ExecuteCommand(int command_id, int event_flags) override;
// Returns a browser window, or creates one if none are open. Used by
// operations (like displaying the preferences dialog) that require a
@@ -193,29 +193,29 @@ class BackgroundModeManager
// content::NotificationObserver implementation.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
// Called when the kBackgroundModeEnabled preference changes.
void OnBackgroundModeEnabledPrefChanged();
// BackgroundApplicationListModel::Observer implementation.
virtual void OnApplicationDataChanged(const extensions::Extension* extension,
- Profile* profile) OVERRIDE;
- virtual void OnApplicationListChanged(Profile* profile) OVERRIDE;
+ Profile* profile) override;
+ virtual void OnApplicationListChanged(Profile* profile) override;
// Overrides from ProfileInfoCacheObserver
- virtual void OnProfileAdded(const base::FilePath& profile_path) OVERRIDE;
+ virtual void OnProfileAdded(const base::FilePath& profile_path) override;
virtual void OnProfileWillBeRemoved(
- const base::FilePath& profile_path) OVERRIDE;
+ const base::FilePath& profile_path) override;
virtual void OnProfileNameChanged(
const base::FilePath& profile_path,
- const base::string16& old_profile_name) OVERRIDE;
+ const base::string16& old_profile_name) override;
// Overrides from StatusIconMenuModel::Delegate implementation.
- virtual void ExecuteCommand(int command_id, int event_flags) OVERRIDE;
+ virtual void ExecuteCommand(int command_id, int event_flags) override;
// chrome::BrowserListObserver implementation.
- virtual void OnBrowserAdded(Browser* browser) OVERRIDE;
+ virtual void OnBrowserAdded(Browser* browser) override;
// Invoked when an extension is installed so we can ensure that
// launch-on-startup is enabled if appropriate. |extension| can be NULL when

Powered by Google App Engine
This is Rietveld 408576698