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

Unified Diff: chrome/browser/signin/easy_unlock_service.cc

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/signin/easy_unlock_service.cc
diff --git a/chrome/browser/signin/easy_unlock_service.cc b/chrome/browser/signin/easy_unlock_service.cc
index c055080916861191a3ef260e1c219b6572a02fd0..e4408a1b471359dfe37029a2440dafcdd41b02ff 100644
--- a/chrome/browser/signin/easy_unlock_service.cc
+++ b/chrome/browser/signin/easy_unlock_service.cc
@@ -101,7 +101,7 @@ class EasyUnlockService::BluetoothDetector
// device::BluetoothAdapter::Observer:
virtual void AdapterPresentChanged(device::BluetoothAdapter* adapter,
- bool present) OVERRIDE {
+ bool present) override {
service_->OnBluetoothAdapterPresentChanged();
}
@@ -136,11 +136,11 @@ class EasyUnlockService::PowerMonitor
private:
// chromeos::PowerManagerClient::Observer:
- virtual void SuspendImminent() OVERRIDE {
+ virtual void SuspendImminent() override {
service_->DisableAppIfLoaded();
}
- virtual void SuspendDone(const base::TimeDelta& sleep_duration) OVERRIDE {
+ virtual void SuspendDone(const base::TimeDelta& sleep_duration) override {
service_->LoadApp();
}
« no previous file with comments | « chrome/browser/signin/easy_unlock_service.h ('k') | chrome/browser/signin/easy_unlock_service_browsertest_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698