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

Unified Diff: chrome/browser/profiles/profile_manager.h

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/profiles/profile_manager.h
diff --git a/chrome/browser/profiles/profile_manager.h b/chrome/browser/profiles/profile_manager.h
index cf7fb9a0bb122b8303edd995d99a103bdcbd4e42..efad19a690fd3cc3ffc53fa4a37274290ee169b6 100644
--- a/chrome/browser/profiles/profile_manager.h
+++ b/chrome/browser/profiles/profile_manager.h
@@ -190,12 +190,12 @@ class ProfileManager : public base::NonThreadSafe,
// content::NotificationObserver implementation.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
// Profile::Delegate implementation:
virtual void OnProfileCreated(Profile* profile,
bool success,
- bool is_new_profile) OVERRIDE;
+ bool is_new_profile) override;
protected:
// Does final initial actions.
@@ -290,9 +290,9 @@ class ProfileManager : public base::NonThreadSafe,
virtual ~BrowserListObserver();
// chrome::BrowserListObserver implementation.
- virtual void OnBrowserAdded(Browser* browser) OVERRIDE;
- virtual void OnBrowserRemoved(Browser* browser) OVERRIDE;
- virtual void OnBrowserSetLastActive(Browser* browser) OVERRIDE;
+ virtual void OnBrowserAdded(Browser* browser) override;
+ virtual void OnBrowserRemoved(Browser* browser) override;
+ virtual void OnBrowserSetLastActive(Browser* browser) override;
private:
ProfileManager* profile_manager_;
@@ -359,8 +359,8 @@ class ProfileManagerWithoutInit : public ProfileManager {
explicit ProfileManagerWithoutInit(const base::FilePath& user_data_dir);
protected:
- virtual void DoFinalInitForServices(Profile*, bool) OVERRIDE {}
- virtual void DoFinalInitLogging(Profile*) OVERRIDE {}
+ virtual void DoFinalInitForServices(Profile*, bool) override {}
+ virtual void DoFinalInitLogging(Profile*) override {}
};
#endif // CHROME_BROWSER_PROFILES_PROFILE_MANAGER_H_
« no previous file with comments | « chrome/browser/profiles/profile_list_desktop_unittest.cc ('k') | chrome/browser/profiles/profile_manager_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698