Chromium Code Reviews| 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_; |