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

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

Issue 684513002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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/component_cloud_policy_service_unittest.cc
diff --git a/components/policy/core/common/cloud/component_cloud_policy_service_unittest.cc b/components/policy/core/common/cloud/component_cloud_policy_service_unittest.cc
index 7eca8c825a8c86fbc95298786e3d92c0d11a1859..605be1aca75e11fea1f3d3acf2bdda988165b701 100644
--- a/components/policy/core/common/cloud/component_cloud_policy_service_unittest.cc
+++ b/components/policy/core/common/cloud/component_cloud_policy_service_unittest.cc
@@ -111,7 +111,7 @@ class ComponentCloudPolicyServiceTest : public testing::Test {
&store_,
loop_.message_loop_proxy()) {}
- virtual void SetUp() override {
+ void SetUp() override {
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
cache_ = new ResourceCache(temp_dir_.path(), loop_.message_loop_proxy());
@@ -144,7 +144,7 @@ class ComponentCloudPolicyServiceTest : public testing::Test {
NULL);
}
- virtual void TearDown() override {
+ void TearDown() override {
// The service cleans up its backend on the background thread.
service_.reset();
RunUntilIdle();

Powered by Google App Engine
This is Rietveld 408576698