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

Unified Diff: content/browser/service_worker/service_worker_cache_unittest.cc

Issue 637183002: Replace FINAL and OVERRIDE with their C++11 counterparts in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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: content/browser/service_worker/service_worker_cache_unittest.cc
diff --git a/content/browser/service_worker/service_worker_cache_unittest.cc b/content/browser/service_worker/service_worker_cache_unittest.cc
index dacc3bcf6e2e8d81e9b6404937fa5764fb750999..3cbcbfccfad0e5b3ba8893f9328a3c4b906c7a63 100644
--- a/content/browser/service_worker/service_worker_cache_unittest.cc
+++ b/content/browser/service_worker/service_worker_cache_unittest.cc
@@ -46,7 +46,7 @@ class ServiceWorkerCacheTest : public testing::Test {
: browser_thread_bundle_(TestBrowserThreadBundle::IO_MAINLOOP),
callback_error_(ServiceWorkerCache::ErrorTypeOK) {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
ChromeBlobStorageContext* blob_storage_context =
ChromeBlobStorageContext::GetFor(&browser_context_);
// Wait for chrome_blob_storage_context to finish initializing.
@@ -77,7 +77,7 @@ class ServiceWorkerCacheTest : public testing::Test {
}
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
base::RunLoop().RunUntilIdle();
}
@@ -283,7 +283,7 @@ class ServiceWorkerCacheTest : public testing::Test {
class ServiceWorkerCacheTestP : public ServiceWorkerCacheTest,
public testing::WithParamInterface<bool> {
- virtual bool MemoryOnly() OVERRIDE { return !GetParam(); }
+ virtual bool MemoryOnly() override { return !GetParam(); }
};
TEST_P(ServiceWorkerCacheTestP, PutNoBody) {

Powered by Google App Engine
This is Rietveld 408576698