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

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

Issue 654223009: Standardize usage of virtual/override/final in chrome/browser/profiles/ (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/profiles/profile_info_cache_unittest.h
diff --git a/chrome/browser/profiles/profile_info_cache_unittest.h b/chrome/browser/profiles/profile_info_cache_unittest.h
index 882e6055451112ce77281363da63260f40ce9855..4908342aa4e21626c65e04c9695bf2bdabb87845 100644
--- a/chrome/browser/profiles/profile_info_cache_unittest.h
+++ b/chrome/browser/profiles/profile_info_cache_unittest.h
@@ -24,19 +24,16 @@ class ProfileNameVerifierObserver : public ProfileInfoCacheObserver {
public:
explicit ProfileNameVerifierObserver(
TestingProfileManager* testing_profile_manager);
- virtual ~ProfileNameVerifierObserver();
+ ~ProfileNameVerifierObserver() override;
// ProfileInfoCacheObserver overrides:
- virtual void OnProfileAdded(const base::FilePath& profile_path) override;
- virtual void OnProfileWillBeRemoved(
- const base::FilePath& profile_path) override;
- virtual void OnProfileWasRemoved(const base::FilePath& profile_path,
- const base::string16& profile_name) override;
- virtual void OnProfileNameChanged(
- const base::FilePath& profile_path,
- const base::string16& old_profile_name) override;
- virtual void OnProfileAvatarChanged(
- const base::FilePath& profile_path) override;
+ void OnProfileAdded(const base::FilePath& profile_path) override;
+ void OnProfileWillBeRemoved(const base::FilePath& profile_path) override;
+ void OnProfileWasRemoved(const base::FilePath& profile_path,
+ const base::string16& profile_name) override;
+ void OnProfileNameChanged(const base::FilePath& profile_path,
+ const base::string16& old_profile_name) override;
+ void OnProfileAvatarChanged(const base::FilePath& profile_path) override;
private:
ProfileInfoCache* GetCache();

Powered by Google App Engine
This is Rietveld 408576698