| Index: net/disk_cache/blockfile/stress_cache.cc
|
| ===================================================================
|
| --- net/disk_cache/blockfile/stress_cache.cc (revision 272613)
|
| +++ net/disk_cache/blockfile/stress_cache.cc (working copy)
|
| @@ -56,7 +56,7 @@
|
| base::FilePath exe;
|
| PathService::Get(base::FILE_EXE, &exe);
|
|
|
| - CommandLine cmdline(exe);
|
| + base::CommandLine cmdline(exe);
|
| cmdline.AppendArg(base::IntToString(iteration));
|
|
|
| base::ProcessHandle handle;
|
| @@ -271,7 +271,7 @@
|
| #if defined(OS_WIN)
|
| logging::LogEventProvider::Initialize(kStressCacheTraceProviderName);
|
| #else
|
| - CommandLine::Init(argc, argv);
|
| + base::CommandLine::Init(argc, argv);
|
| logging::LoggingSettings settings;
|
| settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG;
|
| logging::InitLogging(settings);
|
|
|