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_; |