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

Unified Diff: chrome_frame/test_utils.cc

Issue 112433004: Update uses of UTF conversions in chrome_frame/, chromeos/, components/ to use the base:: namespace. (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_frame/test/util_unittests.cc ('k') | chrome_frame/urlmon_bind_status_callback.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test_utils.cc
diff --git a/chrome_frame/test_utils.cc b/chrome_frame/test_utils.cc
index 4661bf83cc3e930d4d1c39f0f8de1fd09ddc7926..b6e48f9eb0d3e4ed9e60542fbfbb15bc1f0c53d8 100644
--- a/chrome_frame/test_utils.cc
+++ b/chrome_frame/test_utils.cc
@@ -95,15 +95,15 @@ void ScopedChromeFrameRegistrar::DoRegistration(
entrypoint_index += 2;
if (registration_operation == UNREGISTER)
entrypoint_index += 1;
- base::string16 registration_command(ASCIIToUTF16("\""));
+ base::string16 registration_command(base::ASCIIToUTF16("\""));
registration_command +=
CommandLine::ForCurrentProcess()->GetProgram().value();
- registration_command += ASCIIToUTF16("\" ");
+ registration_command += base::ASCIIToUTF16("\" ");
registration_command += kCallRegistrationEntrypointSwitch;
- registration_command += ASCIIToUTF16(" \"");
+ registration_command += base::ASCIIToUTF16(" \"");
registration_command += path;
- registration_command += ASCIIToUTF16("\" ");
- registration_command += ASCIIToUTF16(kEntrypoints[entrypoint_index]);
+ registration_command += base::ASCIIToUTF16("\" ");
+ registration_command += base::ASCIIToUTF16(kEntrypoints[entrypoint_index]);
launch_options.wait = true;
if (!base::LaunchProcess(registration_command, launch_options,
&process_handle)) {
« no previous file with comments | « chrome_frame/test/util_unittests.cc ('k') | chrome_frame/urlmon_bind_status_callback.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698