Index: chrome/browser/about_flags_unittest.cc |
=================================================================== |
--- chrome/browser/about_flags_unittest.cc (revision 184354) |
+++ chrome/browser/about_flags_unittest.cc (working copy) |
@@ -251,7 +251,7 @@ |
#if defined(OS_WIN) |
EXPECT_EQ(std::wstring::npos, |
command_line.GetCommandLineString().find( |
- base::ASCIIToWide(switch1_with_equals))); |
+ ASCIIToWide(switch1_with_equals))); |
#else |
EXPECT_EQ(std::string::npos, |
command_line.GetCommandLineString().find(switch1_with_equals)); |
@@ -264,7 +264,7 @@ |
#if defined(OS_WIN) |
EXPECT_NE(std::wstring::npos, |
command_line.GetCommandLineString().find( |
- base::ASCIIToWide(switch2_with_equals))); |
+ ASCIIToWide(switch2_with_equals))); |
#else |
EXPECT_NE(std::string::npos, |
command_line.GetCommandLineString().find(switch2_with_equals)); |