| Index: chrome/common/extensions/command_unittest.cc
|
| diff --git a/chrome/common/extensions/command_unittest.cc b/chrome/common/extensions/command_unittest.cc
|
| index 0b3c3922c83943c64ee09d708a39c4f851022200..b36a86addf1f09e562b4281303acea3e484e4b2b 100644
|
| --- a/chrome/common/extensions/command_unittest.cc
|
| +++ b/chrome/common/extensions/command_unittest.cc
|
| @@ -137,7 +137,7 @@ TEST(CommandTest, ExtensionCommandParsing) {
|
| EXPECT_EQ(kTests[i].expected_result, result);
|
| if (result) {
|
| EXPECT_STREQ(kTests[i].description,
|
| - UTF16ToASCII(command.description()).c_str());
|
| + base::UTF16ToASCII(command.description()).c_str());
|
| EXPECT_STREQ(kTests[i].command_name, command.command_name().c_str());
|
| EXPECT_EQ(kTests[i].accelerator, command.accelerator());
|
| }
|
| @@ -157,7 +157,7 @@ TEST(CommandTest, ExtensionCommandParsing) {
|
| EXPECT_EQ(kTests[i].expected_result, result);
|
| if (result) {
|
| EXPECT_STREQ(kTests[i].description,
|
| - UTF16ToASCII(command.description()).c_str());
|
| + base::UTF16ToASCII(command.description()).c_str());
|
| EXPECT_STREQ(kTests[i].command_name, command.command_name().c_str());
|
| EXPECT_EQ(kTests[i].accelerator, command.accelerator());
|
| }
|
| @@ -185,7 +185,7 @@ TEST(CommandTest, ExtensionCommandParsingFallback) {
|
| base::string16 error;
|
| EXPECT_TRUE(command.Parse(input.get(), command_name, 0, &error));
|
| EXPECT_STREQ(description.c_str(),
|
| - UTF16ToASCII(command.description()).c_str());
|
| + base::UTF16ToASCII(command.description()).c_str());
|
| EXPECT_STREQ(command_name.c_str(), command.command_name().c_str());
|
|
|
| #if defined(OS_WIN)
|
|
|