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

Unified Diff: chrome/browser/chromeos/login/screens/host_pairing_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/screens/host_pairing_screen.h
diff --git a/chrome/browser/chromeos/login/screens/host_pairing_screen.h b/chrome/browser/chromeos/login/screens/host_pairing_screen.h
index c69f5f8b38b82aecbc9c586f4b1a15c64935058e..03b7b2cd2aeeffb853766cc4328cd8fdc4981676 100644
--- a/chrome/browser/chromeos/login/screens/host_pairing_screen.h
+++ b/chrome/browser/chromeos/login/screens/host_pairing_screen.h
@@ -28,22 +28,22 @@ class HostPairingScreen :
void CommitContextChanges();
// Overridden from WizardScreen:
- 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;
// Overridden from ControllerPairingView::Delegate:
- virtual void OnActorDestroyed(HostPairingScreenActor* actor) OVERRIDE;
+ virtual void OnActorDestroyed(HostPairingScreenActor* actor) override;
// Context for sharing data between C++ and JS.
// TODO(dzhioev): move to BaseScreen when possible.

Powered by Google App Engine
This is Rietveld 408576698