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

Unified Diff: chrome/browser/ui/ash/app_list/app_list_service_ash.h

Issue 686563002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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/ash/app_list/app_list_service_ash.h
diff --git a/chrome/browser/ui/ash/app_list/app_list_service_ash.h b/chrome/browser/ui/ash/app_list/app_list_service_ash.h
index 0af0404f863c46de37e89a6fa7289cb93484a659..2092162c184adc6cbfc94d7c6315648ddad79956 100644
--- a/chrome/browser/ui/ash/app_list/app_list_service_ash.h
+++ b/chrome/browser/ui/ash/app_list/app_list_service_ash.h
@@ -21,23 +21,22 @@ class AppListServiceAsh : public AppListServiceImpl {
friend struct DefaultSingletonTraits<AppListServiceAsh>;
AppListServiceAsh();
- virtual ~AppListServiceAsh();
+ ~AppListServiceAsh() override;
// AppListService overrides:
- virtual base::FilePath GetProfilePath(
- const base::FilePath& user_data_dir) override;
- virtual void ShowForProfile(Profile* default_profile) override;
- virtual bool IsAppListVisible() const override;
- virtual void DismissAppList() override;
- virtual void EnableAppList(Profile* initial_profile,
- AppListEnableSource enable_source) override;
- virtual gfx::NativeWindow GetAppListWindow() override;
- virtual Profile* GetCurrentAppListProfile() override;
- virtual AppListControllerDelegate* GetControllerDelegate() override;
+ base::FilePath GetProfilePath(const base::FilePath& user_data_dir) override;
+ void ShowForProfile(Profile* default_profile) override;
+ bool IsAppListVisible() const override;
+ void DismissAppList() override;
+ void EnableAppList(Profile* initial_profile,
+ AppListEnableSource enable_source) override;
+ gfx::NativeWindow GetAppListWindow() override;
+ Profile* GetCurrentAppListProfile() override;
+ AppListControllerDelegate* GetControllerDelegate() override;
// ApplistServiceImpl overrides:
- virtual void CreateForProfile(Profile* default_profile) override;
- virtual void DestroyAppList() override;
+ void CreateForProfile(Profile* default_profile) override;
+ void DestroyAppList() override;
scoped_ptr<AppListControllerDelegateAsh> controller_delegate_;

Powered by Google App Engine
This is Rietveld 408576698