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

Unified Diff: net/disk_cache/disk_cache_test_util.h

Issue 3387012: Revert 60165 - GTTF: Make net_unittests run successfully with parallel test l... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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/disk_cache_test_base.cc ('k') | net/disk_cache/disk_cache_test_util.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_util.h
===================================================================
--- net/disk_cache/disk_cache_test_util.h (revision 60165)
+++ net/disk_cache/disk_cache_test_util.h (working copy)
@@ -11,7 +11,6 @@
#include "base/callback.h"
#include "base/file_path.h"
#include "base/message_loop.h"
-#include "base/scoped_temp_dir.h"
#include "base/timer.h"
#include "build/build_config.h"
@@ -21,9 +20,12 @@
// Deletes all file son the cache.
bool DeleteCache(const FilePath& path);
-// Copies a set of cache files from the data folder to the destination folder.
-bool CopyTestCache(const std::string& name, const FilePath& destination);
+// Copies a set of cache files from the data folder to the test folder.
+bool CopyTestCache(const std::string& name);
+// Gets the path to the cache test folder.
+FilePath GetCacheFilePath();
+
// Fills buffer with random values (may contain nulls unless no_nulls is true).
void CacheTestFillBuffer(char* buffer, size_t len, bool no_nulls);
@@ -38,12 +40,14 @@
class ScopedTestCache {
public:
ScopedTestCache();
+ // Use a specific folder name.
+ explicit ScopedTestCache(const std::string& name);
~ScopedTestCache();
- FilePath path() const { return temp_dir_.path(); }
+ FilePath path() const { return path_; }
private:
- ScopedTempDir temp_dir_;
+ const FilePath path_; // Path to the cache test folder.
DISALLOW_COPY_AND_ASSIGN(ScopedTestCache);
};
« no previous file with comments | « net/disk_cache/disk_cache_test_base.cc ('k') | net/disk_cache/disk_cache_test_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698