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

Unified Diff: win8/test/test_registrar.cc

Issue 119733002: Add base:: to string16s in win8/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge 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 | « win8/test/open_with_dialog_controller.cc ('k') | win8/test/ui_automation_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: win8/test/test_registrar.cc
diff --git a/win8/test/test_registrar.cc b/win8/test/test_registrar.cc
index 25445c91e7c055c14c3202c945fb022fc4dbbc92..b5cec1033326e29f9be1bd125904724eef598d5e 100644
--- a/win8/test/test_registrar.cc
+++ b/win8/test/test_registrar.cc
@@ -92,18 +92,18 @@ class TestDelegateExecuteModule
command_line.GetSwitchValueNative(
win8::test::kTestProgId).c_str());
- string16 exe_path(
+ base::string16 exe_path(
command_line.GetSwitchValueNative(win8::test::kTestExePath));
- string16 exe_open_command(base::StringPrintf(L"\"%ls\" -- %%*",
- exe_path.c_str()));
+ base::string16 exe_open_command(
+ base::StringPrintf(L"\"%ls\" -- %%*", exe_path.c_str()));
registrar->AddReplacement(L"EXE_OPEN_COMMAND", exe_open_command.c_str());
- string16 exe_icon(base::StringPrintf(L"%ls,0", exe_path.c_str()));
+ base::string16 exe_icon(base::StringPrintf(L"%ls,0", exe_path.c_str()));
registrar->AddReplacement(L"EXE_ICON", exe_icon.c_str());
- string16 prog_id_open_command(base::StringPrintf(L"\"%ls\" -- \"%%1\"",
- exe_path.c_str()));
+ base::string16 prog_id_open_command(
+ base::StringPrintf(L"\"%ls\" -- \"%%1\"", exe_path.c_str()));
registrar->AddReplacement(L"PROG_ID_OPEN_COMMAND",
prog_id_open_command.c_str());
« no previous file with comments | « win8/test/open_with_dialog_controller.cc ('k') | win8/test/ui_automation_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698