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

Unified Diff: chrome/browser/chromeos/ownership/owner_settings_service_chromeos.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/ownership/owner_settings_service_chromeos.h
diff --git a/chrome/browser/chromeos/ownership/owner_settings_service_chromeos.h b/chrome/browser/chromeos/ownership/owner_settings_service_chromeos.h
index 3ef3d7edeff8a35c541d1cce95f0c4b6fd10bd5b..8f47b4d968582b8e0ed8a6a907ea2cc25d325ddf 100644
--- a/chrome/browser/chromeos/ownership/owner_settings_service_chromeos.h
+++ b/chrome/browser/chromeos/ownership/owner_settings_service_chromeos.h
@@ -47,15 +47,15 @@ class OwnerSettingsServiceChromeOS : public ownership::OwnerSettingsService,
// ownership::OwnerSettingsService implementation:
virtual void SignAndStorePolicyAsync(
scoped_ptr<enterprise_management::PolicyData> policy,
- const base::Closure& callback) OVERRIDE;
+ const base::Closure& callback) override;
// NotificationObserver implementation:
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
// SessionManagerClient::Observer:
- virtual void OwnerKeySet(bool success) OVERRIDE;
+ virtual void OwnerKeySet(bool success) override;
// Checks if the user is the device owner, without the user profile having to
// been initialized. Should be used only if login state is in safe mode.
@@ -80,10 +80,10 @@ class OwnerSettingsServiceChromeOS : public ownership::OwnerSettingsService,
virtual void ReloadKeypairImpl(const base::Callback<
void(const scoped_refptr<ownership::PublicKey>& public_key,
const scoped_refptr<ownership::PrivateKey>& private_key)>& callback)
- OVERRIDE;
+ override;
// Possibly notifies DeviceSettingsService that owner's keypair is loaded.
- virtual void OnPostKeypairLoadedActions() OVERRIDE;
+ virtual void OnPostKeypairLoadedActions() override;
// Performs next operation in the queue.
void StartNextOperation();

Powered by Google App Engine
This is Rietveld 408576698