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

Unified Diff: chrome/browser/chromeos/profiles/profile_helper.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
Index: chrome/browser/chromeos/profiles/profile_helper.h
diff --git a/chrome/browser/chromeos/profiles/profile_helper.h b/chrome/browser/chromeos/profiles/profile_helper.h
index 7d8f831535ed7687c6448511bf9d319dfc1dab77..e9941dca1c54094847de76b11cbb2b72eee30d2e 100644
--- a/chrome/browser/chromeos/profiles/profile_helper.h
+++ b/chrome/browser/chromeos/profiles/profile_helper.h
@@ -45,7 +45,7 @@ class ProfileHelper
public user_manager::UserManager::UserSessionStateObserver {
public:
ProfileHelper();
- virtual ~ProfileHelper();
+ ~ProfileHelper() override;
// Returns ProfileHelper instance. This class is not singleton and is owned
// by BrowserProcess/BrowserProcessPlatformPart. This method keeps that
@@ -135,15 +135,15 @@ class ProfileHelper
friend class SessionStateDelegateChromeOSTest;
// BrowsingDataRemover::Observer implementation:
- virtual void OnBrowsingDataRemoverDone() override;
+ void OnBrowsingDataRemoverDone() override;
// OAuth2LoginManager::Observer overrides.
- virtual void OnSessionRestoreStateChanged(
+ void OnSessionRestoreStateChanged(
Profile* user_profile,
OAuth2LoginManager::SessionRestoreState state) override;
// user_manager::UserManager::UserSessionStateObserver implementation:
- virtual void ActiveUserHashChanged(const std::string& hash) override;
+ void ActiveUserHashChanged(const std::string& hash) override;
// Associates |user| with profile with the same user_id,
// for GetUserByProfile() testing.
« no previous file with comments | « chrome/browser/chromeos/login/signin/oauth2_token_fetcher.h ('k') | chrome/browser/command_updater_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698