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

Unified Diff: chrome/browser/chromeos/login/app_launch_controller.h

Issue 856493004: Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/login. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/app_launch_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/app_launch_controller.h
diff --git a/chrome/browser/chromeos/login/app_launch_controller.h b/chrome/browser/chromeos/login/app_launch_controller.h
index 74a58e9586fb1b2d328a270f830bbc6f86e40840..a8d1af891c9468d444cf659dc37463b65d47f907 100644
--- a/chrome/browser/chromeos/login/app_launch_controller.h
+++ b/chrome/browser/chromeos/login/app_launch_controller.h
@@ -43,7 +43,7 @@ class AppLaunchController
LoginDisplayHost* host,
OobeDisplay* oobe_display);
- virtual ~AppLaunchController();
+ ~AppLaunchController() override;
void StartAppLaunch();
@@ -81,33 +81,33 @@ class AppLaunchController
void MaybeShowNetworkConfigureUI();
// KioskProfileLoader::Delegate overrides:
- virtual void OnProfileLoaded(Profile* profile) override;
- virtual void OnProfileLoadFailed(KioskAppLaunchError::Error error) override;
+ void OnProfileLoaded(Profile* profile) override;
+ void OnProfileLoadFailed(KioskAppLaunchError::Error error) override;
// AppLaunchSplashScreenActor::Delegate overrides:
- virtual void OnConfigureNetwork() override;
- virtual void OnCancelAppLaunch() override;
- virtual void OnNetworkConfigRequested(bool requested) override;
- virtual void OnNetworkStateChanged(bool online) override;
+ void OnConfigureNetwork() override;
+ void OnCancelAppLaunch() override;
+ void OnNetworkConfigRequested(bool requested) override;
+ void OnNetworkStateChanged(bool online) override;
// StartupAppLauncher::Delegate overrides:
- virtual void InitializeNetwork() override;
- virtual bool IsNetworkReady() override;
- virtual void OnLoadingOAuthFile() override;
- virtual void OnInitializingTokenService() override;
- virtual void OnInstallingApp() override;
- virtual void OnReadyToLaunch() override;
- virtual void OnLaunchSucceeded() override;
- virtual void OnLaunchFailed(KioskAppLaunchError::Error error) override;
- virtual bool IsShowingNetworkConfigScreen() override;
+ void InitializeNetwork() override;
+ bool IsNetworkReady() override;
+ void OnLoadingOAuthFile() override;
+ void OnInitializingTokenService() override;
+ void OnInstallingApp() override;
+ void OnReadyToLaunch() override;
+ void OnLaunchSucceeded() override;
+ void OnLaunchFailed(KioskAppLaunchError::Error error) override;
+ bool IsShowingNetworkConfigScreen() override;
// AppLaunchSigninScreen::Delegate overrides:
- virtual void OnOwnerSigninSuccess() override;
+ void OnOwnerSigninSuccess() override;
// content::NotificationObserver overrides:
- virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override;
+ void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override;
Profile* profile_;
const std::string app_id_;
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/app_launch_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698