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

Unified Diff: components/policy/core/common/cloud/cloud_policy_core_unittest.cc

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_core_unittest.cc
diff --git a/components/policy/core/common/cloud/cloud_policy_core_unittest.cc b/components/policy/core/common/cloud/cloud_policy_core_unittest.cc
index ea6efe9c08d3f0d2f02f3bd5e3369dc87693153a..db0908398d1a1d28142873b95784e2a03dcde75b 100644
--- a/components/policy/core/common/cloud/cloud_policy_core_unittest.cc
+++ b/components/policy/core/common/cloud/cloud_policy_core_unittest.cc
@@ -39,7 +39,7 @@ class CloudPolicyCoreTest : public testing::Test,
core_.RemoveObserver(this);
}
- virtual void OnCoreConnected(CloudPolicyCore* core) OVERRIDE {
+ virtual void OnCoreConnected(CloudPolicyCore* core) override {
// Make sure core is connected at callback time.
if (core_.client())
core_connected_callback_count_++;
@@ -47,7 +47,7 @@ class CloudPolicyCoreTest : public testing::Test,
bad_callback_count_++;
}
- virtual void OnRefreshSchedulerStarted(CloudPolicyCore* core) OVERRIDE {
+ virtual void OnRefreshSchedulerStarted(CloudPolicyCore* core) override {
// Make sure refresh scheduler is started at callback time.
if (core_.refresh_scheduler())
refresh_scheduler_started_callback_count_++;
@@ -55,7 +55,7 @@ class CloudPolicyCoreTest : public testing::Test,
bad_callback_count_++;
}
- virtual void OnCoreDisconnecting(CloudPolicyCore* core) OVERRIDE {
+ virtual void OnCoreDisconnecting(CloudPolicyCore* core) override {
// Make sure core is still connected at callback time.
if (core_.client())
core_disconnecting_callback_count_++;

Powered by Google App Engine
This is Rietveld 408576698