Index: chrome/browser/ui/app_list/app_list_service_views.h |
diff --git a/chrome/browser/ui/app_list/app_list_service_views.h b/chrome/browser/ui/app_list/app_list_service_views.h |
index 258e8239eca267ea0181d501b92a1eb73798b7bf..7268ccffeee939b30105903f97c291de8c73b3ca 100644 |
--- a/chrome/browser/ui/app_list/app_list_service_views.h |
+++ b/chrome/browser/ui/app_list/app_list_service_views.h |
@@ -18,7 +18,7 @@ class AppListServiceViews : public AppListServiceImpl, |
public: |
explicit AppListServiceViews( |
scoped_ptr<AppListControllerDelegate> controller_delegate); |
- virtual ~AppListServiceViews(); |
+ ~AppListServiceViews() override; |
// Set |can_dismiss| to prevent the app list dismissing when losing focus. For |
// example, while showing a window-modal dialog. |
@@ -31,20 +31,20 @@ class AppListServiceViews : public AppListServiceImpl, |
virtual void OnViewBeingDestroyed(); |
// AppListService overrides: |
- virtual void Init(Profile* initial_profile) override; |
- virtual void ShowForProfile(Profile* requested_profile) override; |
- virtual void DismissAppList() override; |
- virtual bool IsAppListVisible() const override; |
- virtual gfx::NativeWindow GetAppListWindow() override; |
- virtual Profile* GetCurrentAppListProfile() override; |
- virtual AppListControllerDelegate* GetControllerDelegate() override; |
+ void Init(Profile* initial_profile) override; |
+ void ShowForProfile(Profile* requested_profile) override; |
+ void DismissAppList() override; |
+ bool IsAppListVisible() const override; |
+ gfx::NativeWindow GetAppListWindow() override; |
+ Profile* GetCurrentAppListProfile() override; |
+ AppListControllerDelegate* GetControllerDelegate() override; |
// AppListServiceImpl overrides: |
- virtual void CreateForProfile(Profile* requested_profile) override; |
- virtual void DestroyAppList() override; |
+ void CreateForProfile(Profile* requested_profile) override; |
+ void DestroyAppList() override; |
// AppListShowerDelegate overrides: |
- virtual AppListViewDelegate* GetViewDelegateForCreate() override; |
+ AppListViewDelegate* GetViewDelegateForCreate() override; |
private: |
// Responsible for creating the app list and responding to profile changes. |