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

Unified Diff: net/disk_cache/disk_cache_test_base.h

Issue 3410008: GTTF: Make net_unittests run successfully with parallel test launcher (Closed)
Patch Set: fixes Created 10 years, 3 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/block_files_unittest.cc ('k') | net/disk_cache/disk_cache_test_base.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 faecc173488967ac95f6e0cc81394441c246a150..0121191b71fc90728bf9e8f74aaace8bf7a7d989 100644
--- a/net/disk_cache/disk_cache_test_base.h
+++ b/net/disk_cache/disk_cache_test_base.h
@@ -9,6 +9,7 @@
#include "base/basictypes.h"
#include "base/thread.h"
#include "net/base/cache_type.h"
+#include "net/disk_cache/disk_cache_test_util.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/platform_test.h"
@@ -92,6 +93,10 @@ class DiskCacheTestWithCache : public DiskCacheTest {
type_ = type;
}
+ FilePath path() const {
+ return test_cache_.path();
+ }
+
// Utility methods to access the cache and wait for each operation to finish.
int OpenEntry(const std::string& key, disk_cache::Entry** entry);
int CreateEntry(const std::string& key, disk_cache::Entry** entry);
@@ -136,7 +141,9 @@ class DiskCacheTestWithCache : public DiskCacheTest {
void InitDiskCache();
void InitDiskCacheImpl(const FilePath& path);
+ ScopedTestCache test_cache_;
base::Thread cache_thread_;
+
DISALLOW_COPY_AND_ASSIGN(DiskCacheTestWithCache);
};
« no previous file with comments | « net/disk_cache/block_files_unittest.cc ('k') | net/disk_cache/disk_cache_test_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698