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

Unified Diff: chrome/browser/chromeos/login/enrollment/enrollment_screen.h

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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/chromeos/login/enrollment/enrollment_screen.h
diff --git a/chrome/browser/chromeos/login/enrollment/enrollment_screen.h b/chrome/browser/chromeos/login/enrollment/enrollment_screen.h
index 912462a72b3611b62c26264c0183704f5bfd3843..af1c3e5bc0551177e7ecd10c8b59074e612c81ad 100644
--- a/chrome/browser/chromeos/login/enrollment/enrollment_screen.h
+++ b/chrome/browser/chromeos/login/enrollment/enrollment_screen.h
@@ -56,27 +56,27 @@ class EnrollmentScreen
pairing_chromeos::HostPairingController* remora_controller);
// WizardScreen implementation:
- virtual void PrepareToShow() OVERRIDE;
- virtual void Show() OVERRIDE;
- virtual void Hide() OVERRIDE;
- virtual std::string GetName() const OVERRIDE;
+ virtual void PrepareToShow() override;
+ virtual void Show() override;
+ virtual void Hide() override;
+ virtual std::string GetName() const override;
// pairing_chromeos::HostPairingController::Observer:
- virtual void PairingStageChanged(Stage new_stage) OVERRIDE;
+ virtual void PairingStageChanged(Stage new_stage) override;
virtual void ConfigureHost(bool accepted_eula,
const std::string& lang,
const std::string& timezone,
bool send_reports,
- const std::string& keyboard_layout) OVERRIDE;
- virtual void EnrollHost(const std::string& auth_token) OVERRIDE;
+ const std::string& keyboard_layout) override;
+ virtual void EnrollHost(const std::string& auth_token) override;
// EnrollmentScreenActor::Controller implementation:
- virtual void OnLoginDone(const std::string& user) OVERRIDE;
- virtual void OnAuthError(const GoogleServiceAuthError& error) OVERRIDE;
- virtual void OnOAuthTokenAvailable(const std::string& oauth_token) OVERRIDE;
- virtual void OnRetry() OVERRIDE;
- virtual void OnCancel() OVERRIDE;
- virtual void OnConfirmationClosed() OVERRIDE;
+ virtual void OnLoginDone(const std::string& user) override;
+ virtual void OnAuthError(const GoogleServiceAuthError& error) override;
+ virtual void OnOAuthTokenAvailable(const std::string& oauth_token) override;
+ virtual void OnRetry() override;
+ virtual void OnCancel() override;
+ virtual void OnConfirmationClosed() override;
// Used for testing.
EnrollmentScreenActor* GetActor() {

Powered by Google App Engine
This is Rietveld 408576698