Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / app_list / test / fake_profile_store.h
index 68622dc..678ee26 100644 (file)
 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_;