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

Unified Diff: chrome/browser/chromeos/app_mode/kiosk_profile_loader.h

Issue 827293003: Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/app_mode. (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
Index: chrome/browser/chromeos/app_mode/kiosk_profile_loader.h
diff --git a/chrome/browser/chromeos/app_mode/kiosk_profile_loader.h b/chrome/browser/chromeos/app_mode/kiosk_profile_loader.h
index c09a29754f03e655c872fd4b4268678e716c7fde..8796c60c6f5a644a753589232dfcde3dc356d137 100644
--- a/chrome/browser/chromeos/app_mode/kiosk_profile_loader.h
+++ b/chrome/browser/chromeos/app_mode/kiosk_profile_loader.h
@@ -37,7 +37,7 @@ class KioskProfileLoader : public LoginPerformer::Delegate,
bool use_guest_mount,
Delegate* delegate);
- virtual ~KioskProfileLoader();
+ ~KioskProfileLoader() override;
// Starts profile load. Calls delegate on success or failure.
void Start();
@@ -49,16 +49,14 @@ class KioskProfileLoader : public LoginPerformer::Delegate,
void ReportLaunchResult(KioskAppLaunchError::Error error);
// LoginPerformer::Delegate overrides
achuithb 2015/01/15 23:56:25 nit: colon here for consistency
dcheng 2015/01/16 00:02:39 Done.
- virtual void OnAuthSuccess(const UserContext& user_context) override;
- virtual void OnAuthFailure(const AuthFailure& error) override;
- virtual void WhiteListCheckFailed(const std::string& email) override;
- virtual void PolicyLoadFailed() override;
- virtual void OnOnlineChecked(
- const std::string& email, bool success) override;
+ void OnAuthSuccess(const UserContext& user_context) override;
+ void OnAuthFailure(const AuthFailure& error) override;
+ void WhiteListCheckFailed(const std::string& email) override;
+ void PolicyLoadFailed() override;
+ void OnOnlineChecked(const std::string& email, bool success) override;
// LoginUtils::Delegate implementation:
- virtual void OnProfilePrepared(Profile* profile,
- bool browser_launched) override;
+ void OnProfilePrepared(Profile* profile, bool browser_launched) override;
std::string user_id_;
bool use_guest_mount_;

Powered by Google App Engine
This is Rietveld 408576698