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

Unified Diff: components/policy/core/common/cloud/cloud_policy_refresh_scheduler.h

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: components/policy/core/common/cloud/cloud_policy_refresh_scheduler.h
diff --git a/components/policy/core/common/cloud/cloud_policy_refresh_scheduler.h b/components/policy/core/common/cloud/cloud_policy_refresh_scheduler.h
index efdb37b40e3a088e84838ac4edbe676e81eba036..0febc4827c129d3ba0f6f8d01e9fa4cda480471d 100644
--- a/components/policy/core/common/cloud/cloud_policy_refresh_scheduler.h
+++ b/components/policy/core/common/cloud/cloud_policy_refresh_scheduler.h
@@ -68,16 +68,16 @@ class POLICY_EXPORT CloudPolicyRefreshScheduler
}
// CloudPolicyClient::Observer:
- virtual void OnPolicyFetched(CloudPolicyClient* client) OVERRIDE;
- virtual void OnRegistrationStateChanged(CloudPolicyClient* client) OVERRIDE;
- virtual void OnClientError(CloudPolicyClient* client) OVERRIDE;
+ virtual void OnPolicyFetched(CloudPolicyClient* client) override;
+ virtual void OnRegistrationStateChanged(CloudPolicyClient* client) override;
+ virtual void OnClientError(CloudPolicyClient* client) override;
// CloudPolicyStore::Observer:
- virtual void OnStoreLoaded(CloudPolicyStore* store) OVERRIDE;
- virtual void OnStoreError(CloudPolicyStore* store) OVERRIDE;
+ virtual void OnStoreLoaded(CloudPolicyStore* store) override;
+ virtual void OnStoreError(CloudPolicyStore* store) override;
// net::NetworkChangeNotifier::IPAddressObserver:
- virtual void OnIPAddressChanged() OVERRIDE;
+ virtual void OnIPAddressChanged() override;
private:
// Initializes |last_refresh_| to the policy timestamp from |store_| in case

Powered by Google App Engine
This is Rietveld 408576698