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

Unified Diff: chrome/browser/ui/app_list/test/fake_profile_store.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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/ui/app_list/test/fake_profile_store.h
diff --git a/chrome/browser/ui/app_list/test/fake_profile_store.h b/chrome/browser/ui/app_list/test/fake_profile_store.h
index 26698a9a5536d2eabc477cb5b88dd2e6a734a24e..678ee26da98528ab6ac12df3365f56d6edc7ea17 100644
--- a/chrome/browser/ui/app_list/test/fake_profile_store.h
+++ b/chrome/browser/ui/app_list/test/fake_profile_store.h
@@ -14,19 +14,18 @@
class FakeProfileStore : public ProfileStore {
public:
explicit FakeProfileStore(const base::FilePath& user_data_dir);
- virtual ~FakeProfileStore();
+ ~FakeProfileStore() override;
void LoadProfile(Profile* profile);
void RemoveProfile(Profile* profile);
// ProfileStore overrides.
- virtual void AddProfileObserver(ProfileInfoCacheObserver* observer) override;
- virtual void LoadProfileAsync(
- const base::FilePath& path,
- base::Callback<void(Profile*)> callback) override;
- virtual Profile* GetProfileByPath(const base::FilePath& path) override;
- virtual base::FilePath GetUserDataDir() override;
- virtual bool IsProfileSupervised(const base::FilePath& path) override;
+ void AddProfileObserver(ProfileInfoCacheObserver* observer) override;
+ void LoadProfileAsync(const base::FilePath& path,
+ base::Callback<void(Profile*)> callback) override;
+ Profile* GetProfileByPath(const base::FilePath& path) override;
+ base::FilePath GetUserDataDir() override;
+ bool IsProfileSupervised(const base::FilePath& path) override;
private:
base::FilePath user_data_dir_;

Powered by Google App Engine
This is Rietveld 408576698