| Index: net/http/http_content_disposition_unittest.cc
|
| diff --git a/net/http/http_content_disposition_unittest.cc b/net/http/http_content_disposition_unittest.cc
|
| index 62d95778c0b43d56b323a187958179d0102f2ce6..43fef9dd0eab1d0ca4f64713d9e8848380dbd3e6 100644
|
| --- a/net/http/http_content_disposition_unittest.cc
|
| +++ b/net/http/http_content_disposition_unittest.cc
|
| @@ -198,7 +198,7 @@ TEST(HttpContentDispositionTest, Filename) {
|
| for (size_t i = 0; i < ARRAYSIZE_UNSAFE(tests); ++i) {
|
| HttpContentDisposition header(tests[i].header, tests[i].referrer_charset);
|
| EXPECT_EQ(tests[i].expected,
|
| - UTF8ToWide(header.filename()))
|
| + base::UTF8ToWide(header.filename()))
|
| << "Failed on input: " << tests[i].header;
|
| }
|
| }
|
| @@ -507,7 +507,7 @@ TEST(HttpContentDispositionTest, tc2231) {
|
| HttpContentDisposition header(tests[i].header, std::string());
|
| EXPECT_EQ(tests[i].expected_type, header.type())
|
| << "Failed on input: " << tests[i].header;
|
| - EXPECT_EQ(tests[i].expected_filename, UTF8ToWide(header.filename()))
|
| + EXPECT_EQ(tests[i].expected_filename, base::UTF8ToWide(header.filename()))
|
| << "Failed on input: " << tests[i].header;
|
| }
|
| }
|
|
|