| Index: chrome/browser/about_flags_unittest.cc
|
| diff --git a/chrome/browser/about_flags_unittest.cc b/chrome/browser/about_flags_unittest.cc
|
| index 9c2245eca68e55981b52e69b34701789412db66a..2c2039d161aa4ca344ac9394d06365ed68d57c05 100644
|
| --- a/chrome/browser/about_flags_unittest.cc
|
| +++ b/chrome/browser/about_flags_unittest.cc
|
| @@ -251,7 +251,7 @@ TEST_F(AboutFlagsTest, CheckValues) {
|
| #if defined(OS_WIN)
|
| EXPECT_EQ(std::wstring::npos,
|
| command_line.GetCommandLineString().find(
|
| - ASCIIToWide(switch1_with_equals)));
|
| + base::ASCIIToWide(switch1_with_equals)));
|
| #else
|
| EXPECT_EQ(std::string::npos,
|
| command_line.GetCommandLineString().find(switch1_with_equals));
|
| @@ -264,7 +264,7 @@ TEST_F(AboutFlagsTest, CheckValues) {
|
| #if defined(OS_WIN)
|
| EXPECT_NE(std::wstring::npos,
|
| command_line.GetCommandLineString().find(
|
| - ASCIIToWide(switch2_with_equals)));
|
| + base::ASCIIToWide(switch2_with_equals)));
|
| #else
|
| EXPECT_NE(std::string::npos,
|
| command_line.GetCommandLineString().find(switch2_with_equals));
|
|
|