Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7106)

Unified Diff: chrome/common/extensions/command_unittest.cc

Issue 105473003: Add explicit base namespace to string16 users. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/extensions/command.cc ('k') | chrome/common/extensions/extension_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
« no previous file with comments | « chrome/common/extensions/command.cc ('k') | chrome/common/extensions/extension_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698