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

Unified Diff: chrome/browser/app_controller_mac.mm

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/app_controller_mac.mm
diff --git a/chrome/browser/app_controller_mac.mm b/chrome/browser/app_controller_mac.mm
index 6435203b5b101bbd62cfa8346ea3e8cc0cd387b3..3171f02dd56b2eb011f84d55ee15668dce828d88 100644
--- a/chrome/browser/app_controller_mac.mm
+++ b/chrome/browser/app_controller_mac.mm
@@ -244,28 +244,28 @@ class AppControllerProfileObserver : public ProfileInfoCacheObserver {
private:
// ProfileInfoCacheObserver implementation:
- virtual void OnProfileAdded(const base::FilePath& profile_path) OVERRIDE {
+ virtual void OnProfileAdded(const base::FilePath& profile_path) override {
}
virtual void OnProfileWasRemoved(
const base::FilePath& profile_path,
- const base::string16& profile_name) OVERRIDE {
+ const base::string16& profile_name) override {
// When a profile is deleted we need to notify the AppController,
// so it can correctly update its pointer to the last used profile.
[app_controller_ profileWasRemoved:profile_path];
}
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 {
}
virtual void OnProfileAvatarChanged(
- const base::FilePath& profile_path) OVERRIDE {
+ const base::FilePath& profile_path) override {
}
ProfileManager* profile_manager_;
« no previous file with comments | « chrome/browser/android/webapps/single_tab_mode_tab_helper.h ('k') | chrome/browser/app_controller_mac_browsertest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698