| Index: net/tools/dump_cache/url_utilities_unittest.cc
|
| diff --git a/net/tools/dump_cache/url_utilities_unittest.cc b/net/tools/dump_cache/url_utilities_unittest.cc
|
| index 3e3f12203f8aad92b12a9302a8dd151d29dfbb56..0f9cb06c5b5d2a59ea48c4b61f7ec734c15b58ac 100644
|
| --- a/net/tools/dump_cache/url_utilities_unittest.cc
|
| +++ b/net/tools/dump_cache/url_utilities_unittest.cc
|
| @@ -7,6 +7,7 @@
|
| #include <string>
|
|
|
| #include "base/string_util.h"
|
| +#include "base/stringprintf.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| namespace net {
|
| @@ -76,10 +77,10 @@ TEST(UrlUtilitiesTest, Unescape) {
|
| "%3E%2E%3F%2F"));
|
| for (int c = 0; c < 256; ++c) {
|
| std::string unescaped_char(1, implicit_cast<unsigned char>(c));
|
| - std::string escaped_char = StringPrintf("%%%02X", c);
|
| + std::string escaped_char = base::StringPrintf("%%%02X", c);
|
| EXPECT_EQ(unescaped_char, UrlUtilities::Unescape(escaped_char))
|
| << "escaped_char = " << escaped_char;
|
| - escaped_char = StringPrintf("%%%02x", c);
|
| + escaped_char = base::StringPrintf("%%%02x", c);
|
| EXPECT_EQ(unescaped_char, UrlUtilities::Unescape(escaped_char))
|
| << "escaped_char = " << escaped_char;
|
| }
|
|
|