| Index: chrome/common/extensions/command_unittest.cc
|
| diff --git a/chrome/common/extensions/command_unittest.cc b/chrome/common/extensions/command_unittest.cc
|
| index cd985e6d3e79cbbaa03345ad140600dee609dc78..0b3c3922c83943c64ee09d708a39c4f851022200 100644
|
| --- a/chrome/common/extensions/command_unittest.cc
|
| +++ b/chrome/common/extensions/command_unittest.cc
|
| @@ -130,7 +130,7 @@ TEST(CommandTest, ExtensionCommandParsing) {
|
| "| index: " + base::IntToString(i));
|
|
|
| extensions::Command command;
|
| - string16 error;
|
| + base::string16 error;
|
| bool result =
|
| command.Parse(input.get(), kTests[i].command_name, i, &error);
|
|
|
| @@ -182,7 +182,7 @@ TEST(CommandTest, ExtensionCommandParsingFallback) {
|
| input->SetString("description", description);
|
|
|
| extensions::Command command;
|
| - string16 error;
|
| + base::string16 error;
|
| EXPECT_TRUE(command.Parse(input.get(), command_name, 0, &error));
|
| EXPECT_STREQ(description.c_str(),
|
| UTF16ToASCII(command.description()).c_str());
|
|
|