| Index: net/disk_cache/stress_cache.cc
|
| ===================================================================
|
| --- net/disk_cache/stress_cache.cc (revision 60165)
|
| +++ net/disk_cache/stress_cache.cc (working copy)
|
| @@ -29,7 +29,6 @@
|
| #include "base/command_line.h"
|
| #include "base/debug_util.h"
|
| #include "base/file_path.h"
|
| -#include "base/file_util.h"
|
| #include "base/logging.h"
|
| #include "base/message_loop.h"
|
| #include "base/path_service.h"
|
| @@ -51,16 +50,6 @@
|
| const int kError = -1;
|
| const int kExpectedCrash = 100;
|
|
|
| -FilePath GetStressCacheFilePath() {
|
| - FilePath path;
|
| - PathService::Get(base::DIR_TEMP, &path); // Ignore return value;
|
| - path = path.AppendASCII("cache_test_stress");
|
| - if (!file_util::PathExists(path))
|
| - file_util::CreateDirectory(path);
|
| -
|
| - return path;
|
| -}
|
| -
|
| // Starts a new process.
|
| int RunSlave(int iteration) {
|
| FilePath exe;
|
| @@ -103,7 +92,7 @@
|
| // to know which instance of the application wrote them.
|
| void StressTheCache(int iteration) {
|
| int cache_size = 0x800000; // 8MB
|
| - FilePath path = GetStressCacheFilePath();
|
| + FilePath path = GetCacheFilePath().InsertBeforeExtensionASCII("_stress");
|
|
|
| base::Thread cache_thread("CacheThread");
|
| if (!cache_thread.StartWithOptions(
|
|
|