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

Unified Diff: content/browser/appcache/appcache_disk_cache_unittest.cc

Issue 678073006: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bogus formatting 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
« no previous file with comments | « no previous file | content/browser/battery_status/battery_status_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/appcache/appcache_disk_cache_unittest.cc
diff --git a/content/browser/appcache/appcache_disk_cache_unittest.cc b/content/browser/appcache/appcache_disk_cache_unittest.cc
index cddab6a96bbf6c67b9f31495553293943ee6e7d0..b9c67cf9a973371920ac904df53c919100988b62 100644
--- a/content/browser/appcache/appcache_disk_cache_unittest.cc
+++ b/content/browser/appcache/appcache_disk_cache_unittest.cc
@@ -19,7 +19,7 @@ class AppCacheDiskCacheTest : public testing::Test {
public:
AppCacheDiskCacheTest() {}
- virtual void SetUp() override {
+ void SetUp() override {
// Use the current thread for the DiskCache's cache_thread.
message_loop_.reset(new base::MessageLoopForIO());
cache_thread_ = base::ThreadTaskRunnerHandle::Get();
@@ -29,7 +29,7 @@ class AppCacheDiskCacheTest : public testing::Test {
base::Unretained(this));
}
- virtual void TearDown() override {
+ void TearDown() override {
base::RunLoop().RunUntilIdle();
message_loop_.reset(NULL);
}
« no previous file with comments | « no previous file | content/browser/battery_status/battery_status_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698