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

Unified Diff: net/disk_cache/disk_cache_test_base.h

Issue 669813003: Update from chromium https://crrev.com/301725/ (Closed) Base URL: git@github.com:domokit/mojo.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
« no previous file with comments | « net/disk_cache/cache_util_unittest.cc ('k') | net/disk_cache/simple/simple_index_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/disk_cache_test_base.h
diff --git a/net/disk_cache/disk_cache_test_base.h b/net/disk_cache/disk_cache_test_base.h
index ce36f929158f0161888576b5263c623451a94ef2..ef136f4429ffa75e2ac6ac3e66ba328d0955bef5 100644
--- a/net/disk_cache/disk_cache_test_base.h
+++ b/net/disk_cache/disk_cache_test_base.h
@@ -38,7 +38,7 @@ class SimpleBackendImpl;
class DiskCacheTest : public PlatformTest {
protected:
DiskCacheTest();
- virtual ~DiskCacheTest();
+ ~DiskCacheTest() override;
// Copies a set of cache files from the data folder to the test folder.
bool CopyTestCache(const std::string& name);
@@ -46,7 +46,7 @@ class DiskCacheTest : public PlatformTest {
// Deletes the contents of |cache_path_|.
bool CleanupCacheDir();
- virtual void TearDown() override;
+ void TearDown() override;
base::FilePath cache_path_;
@@ -70,7 +70,7 @@ class DiskCacheTestWithCache : public DiskCacheTest {
};
DiskCacheTestWithCache();
- virtual ~DiskCacheTestWithCache();
+ ~DiskCacheTestWithCache() override;
void CreateBackend(uint32 flags, base::Thread* thread);
@@ -154,7 +154,7 @@ class DiskCacheTestWithCache : public DiskCacheTest {
void AddDelay();
// DiskCacheTest:
- virtual void TearDown() override;
+ void TearDown() override;
// cache_ will always have a valid object, regardless of how the cache was
// initialized. The implementation pointers can be NULL.
« no previous file with comments | « net/disk_cache/cache_util_unittest.cc ('k') | net/disk_cache/simple/simple_index_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698