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

Unified Diff: chrome/browser/ui/ash/launcher/app_window_launcher_item_controller.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/ash/launcher/app_window_launcher_item_controller.h
diff --git a/chrome/browser/ui/ash/launcher/app_window_launcher_item_controller.h b/chrome/browser/ui/ash/launcher/app_window_launcher_item_controller.h
index ae6dfe73277d61a9fff5d79ea5ddb34c32e42b62..0e815b2cb44477270fe3a42ade180c7c0880672d 100644
--- a/chrome/browser/ui/ash/launcher/app_window_launcher_item_controller.h
+++ b/chrome/browser/ui/ash/launcher/app_window_launcher_item_controller.h
@@ -53,24 +53,24 @@ class AppWindowLauncherItemController : public LauncherItemController,
const std::string& app_shelf_id() const { return app_shelf_id_; }
// LauncherItemController overrides:
- virtual bool IsOpen() const OVERRIDE;
- virtual bool IsVisible() const OVERRIDE;
- virtual void Launch(ash::LaunchSource source, int event_flags) OVERRIDE;
- virtual bool Activate(ash::LaunchSource source) OVERRIDE;
+ virtual bool IsOpen() const override;
+ virtual bool IsVisible() const override;
+ virtual void Launch(ash::LaunchSource source, int event_flags) override;
+ virtual bool Activate(ash::LaunchSource source) override;
virtual ChromeLauncherAppMenuItems GetApplicationList(int event_flags)
- OVERRIDE;
- virtual bool ItemSelected(const ui::Event& eent) OVERRIDE;
- virtual base::string16 GetTitle() OVERRIDE;
- virtual ui::MenuModel* CreateContextMenu(aura::Window* root_window) OVERRIDE;
- virtual ash::ShelfMenuModel* CreateApplicationMenu(int event_flags) OVERRIDE;
- virtual bool IsDraggable() OVERRIDE;
- virtual bool ShouldShowTooltip() OVERRIDE;
- virtual void Close() OVERRIDE;
+ override;
+ virtual bool ItemSelected(const ui::Event& eent) override;
+ virtual base::string16 GetTitle() override;
+ virtual ui::MenuModel* CreateContextMenu(aura::Window* root_window) override;
+ virtual ash::ShelfMenuModel* CreateApplicationMenu(int event_flags) override;
+ virtual bool IsDraggable() override;
+ virtual bool ShouldShowTooltip() override;
+ virtual void Close() override;
// aura::WindowObserver overrides:
virtual void OnWindowPropertyChanged(aura::Window* window,
const void* key,
- intptr_t old) OVERRIDE;
+ intptr_t old) override;
// Get the number of running applications/incarnations of this.
size_t app_window_count() const { return app_windows_.size(); }

Powered by Google App Engine
This is Rietveld 408576698