| Index: net/disk_cache/backend_unittest.cc
|
| diff --git a/net/disk_cache/backend_unittest.cc b/net/disk_cache/backend_unittest.cc
|
| index 3f0018cbf0e36881382c935c956b396f5033bc98..43b59e837efc69d990cd9fe385566ffe12cda0ee 100644
|
| --- a/net/disk_cache/backend_unittest.cc
|
| +++ b/net/disk_cache/backend_unittest.cc
|
| @@ -6,6 +6,7 @@
|
| #include "base/file_util.h"
|
| #include "base/platform_thread.h"
|
| #include "base/string_util.h"
|
| +#include "base/stringprintf.h"
|
| #include "base/third_party/dynamic_annotations/dynamic_annotations.h"
|
| #include "net/base/io_buffer.h"
|
| #include "net/base/net_errors.h"
|
| @@ -752,7 +753,7 @@ void DiskCacheBackendTest::BackendTrimInvalidEntry2() {
|
|
|
| // Writing 32 entries to this cache chains most of them.
|
| for (int i = 0; i < 32; i++) {
|
| - std::string key(StringPrintf("some key %d", i));
|
| + std::string key(base::StringPrintf("some key %d", i));
|
| ASSERT_EQ(net::OK, CreateEntry(key, &entry));
|
| EXPECT_EQ(kSize, WriteData(entry, 0, 0, buffer, kSize, false));
|
| entry->Close();
|
|
|