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

Unified Diff: chrome/browser/ui/app_list/app_list_service_mac.h

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (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/app_list_service_mac.h
diff --git a/chrome/browser/ui/app_list/app_list_service_mac.h b/chrome/browser/ui/app_list/app_list_service_mac.h
index 81f80a752c5f1660595776f59119eb70a2fab4fe..e9c1a302c2a6930214463a915b25e4bb730f2843 100644
--- a/chrome/browser/ui/app_list/app_list_service_mac.h
+++ b/chrome/browser/ui/app_list/app_list_service_mac.h
@@ -56,32 +56,32 @@ class AppListServiceMac : public AppListServiceImpl,
void WindowAnimationDidEnd();
// AppListService overrides:
- virtual void Init(Profile* initial_profile) OVERRIDE;
- virtual void CreateForProfile(Profile* requested_profile) OVERRIDE;
- virtual void ShowForProfile(Profile* requested_profile) OVERRIDE;
- virtual void DismissAppList() OVERRIDE;
- virtual bool IsAppListVisible() const OVERRIDE;
+ virtual void Init(Profile* initial_profile) override;
+ virtual void CreateForProfile(Profile* requested_profile) override;
+ virtual void ShowForProfile(Profile* requested_profile) override;
+ virtual void DismissAppList() override;
+ virtual bool IsAppListVisible() const override;
virtual void EnableAppList(Profile* initial_profile,
- AppListEnableSource enable_source) OVERRIDE;
- virtual gfx::NativeWindow GetAppListWindow() OVERRIDE;
- virtual AppListControllerDelegate* GetControllerDelegate() OVERRIDE;
- virtual Profile* GetCurrentAppListProfile() OVERRIDE;
- virtual void CreateShortcut() OVERRIDE;
+ AppListEnableSource enable_source) override;
+ virtual gfx::NativeWindow GetAppListWindow() override;
+ virtual AppListControllerDelegate* GetControllerDelegate() override;
+ virtual Profile* GetCurrentAppListProfile() override;
+ virtual void CreateShortcut() override;
// AppListServiceImpl overrides:
- virtual void DestroyAppList() OVERRIDE;
+ virtual void DestroyAppList() override;
// AppShimHandler overrides:
virtual void OnShimLaunch(apps::AppShimHandler::Host* host,
apps::AppShimLaunchType launch_type,
- const std::vector<base::FilePath>& files) OVERRIDE;
- virtual void OnShimClose(apps::AppShimHandler::Host* host) OVERRIDE;
+ const std::vector<base::FilePath>& files) override;
+ virtual void OnShimClose(apps::AppShimHandler::Host* host) override;
virtual void OnShimFocus(apps::AppShimHandler::Host* host,
apps::AppShimFocusType focus_type,
- const std::vector<base::FilePath>& files) OVERRIDE;
+ const std::vector<base::FilePath>& files) override;
virtual void OnShimSetHidden(apps::AppShimHandler::Host* host,
- bool hidden) OVERRIDE;
- virtual void OnShimQuit(apps::AppShimHandler::Host* host) OVERRIDE;
+ bool hidden) override;
+ virtual void OnShimQuit(apps::AppShimHandler::Host* host) override;
private:
friend class test::AppListServiceMacTestApi;

Powered by Google App Engine
This is Rietveld 408576698