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

Unified Diff: chrome/browser/ui/ash/launcher/app_window_launcher_controller.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/launcher/app_window_launcher_controller.h
diff --git a/chrome/browser/ui/ash/launcher/app_window_launcher_controller.h b/chrome/browser/ui/ash/launcher/app_window_launcher_controller.h
index 9fd428d34174664768ee94dae1db41c3f1fc1a3b..8f2ca87ab6953cd9dcd3d144df6d77f85920a3c0 100644
--- a/chrome/browser/ui/ash/launcher/app_window_launcher_controller.h
+++ b/chrome/browser/ui/ash/launcher/app_window_launcher_controller.h
@@ -39,7 +39,7 @@ class AppWindowLauncherController
public aura::client::ActivationChangeObserver {
public:
explicit AppWindowLauncherController(ChromeLauncherController* owner);
- virtual ~AppWindowLauncherController();
+ ~AppWindowLauncherController() override;
// Called by ChromeLauncherController when the active user changed and the
// items need to be updated.
@@ -50,17 +50,16 @@ class AppWindowLauncherController
virtual void AdditionalUserAddedToSession(Profile* profile);
// Overridden from AppWindowRegistry::Observer:
- virtual void OnAppWindowIconChanged(
- extensions::AppWindow* app_window) override;
- virtual void OnAppWindowShown(extensions::AppWindow* app_window) override;
- virtual void OnAppWindowHidden(extensions::AppWindow* app_window) override;
+ void OnAppWindowIconChanged(extensions::AppWindow* app_window) override;
+ void OnAppWindowShown(extensions::AppWindow* app_window) override;
+ void OnAppWindowHidden(extensions::AppWindow* app_window) override;
// Overriden from aura::WindowObserver:
- virtual void OnWindowDestroying(aura::Window* window) override;
+ void OnWindowDestroying(aura::Window* window) override;
// Overriden from client::ActivationChangeObserver:
- virtual void OnWindowActivated(aura::Window* gained_active,
- aura::Window* lost_active) override;
+ void OnWindowActivated(aura::Window* gained_active,
+ aura::Window* lost_active) override;
protected:
// Registers a app window with the shelf and this object.

Powered by Google App Engine
This is Rietveld 408576698