| Index: net/disk_cache/block_files.cc
|
| diff --git a/net/disk_cache/block_files.cc b/net/disk_cache/block_files.cc
|
| index b81a868730b6f1961fe88407e851826f85514851..e0021a8c66d18899119972cd80cbe985f795e14a 100644
|
| --- a/net/disk_cache/block_files.cc
|
| +++ b/net/disk_cache/block_files.cc
|
| @@ -7,6 +7,7 @@
|
| #include "base/file_util.h"
|
| #include "base/histogram.h"
|
| #include "base/string_util.h"
|
| +#include "base/stringprintf.h"
|
| #include "base/thread_checker.h"
|
| #include "base/time.h"
|
| #include "net/disk_cache/cache_util.h"
|
| @@ -602,7 +603,7 @@ void BlockFiles::GetFileStats(int index, int* used_count, int* load) {
|
| FilePath BlockFiles::Name(int index) {
|
| // The file format allows for 256 files.
|
| DCHECK(index < 256 || index >= 0);
|
| - std::string tmp = StringPrintf("%s%d", kBlockName, index);
|
| + std::string tmp = base::StringPrintf("%s%d", kBlockName, index);
|
| return path_.AppendASCII(tmp);
|
| }
|
|
|
|
|