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

Unified Diff: chrome/installer/util/app_command.cc

Issue 94013004: Add base:: to string16s in chrome/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: try again 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/installer/util/app_command.h ('k') | chrome/installer/util/auto_launch_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/app_command.cc
diff --git a/chrome/installer/util/app_command.cc b/chrome/installer/util/app_command.cc
index d0878d2b073514668d72f1db464bdcf3bced430e..8f54e728741d821c63ebdab5583bc15c88f55ae6 100644
--- a/chrome/installer/util/app_command.cc
+++ b/chrome/installer/util/app_command.cc
@@ -31,7 +31,7 @@ AppCommand::AppCommand()
is_run_as_user_(false) {
}
-AppCommand::AppCommand(const string16& command_line)
+AppCommand::AppCommand(const base::string16& command_line)
: command_line_(command_line),
sends_pings_(false),
is_web_accessible_(false),
@@ -46,7 +46,7 @@ bool AppCommand::Initialize(const base::win::RegKey& key) {
}
LONG result = ERROR_SUCCESS;
- string16 cmd_line;
+ base::string16 cmd_line;
result = key.ReadValue(google_update::kRegCommandLineField, &cmd_line);
if (result != ERROR_SUCCESS) {
@@ -68,7 +68,7 @@ bool AppCommand::Initialize(const base::win::RegKey& key) {
}
void AppCommand::AddWorkItems(HKEY predefined_root,
- const string16& command_path,
+ const base::string16& command_path,
WorkItemList* item_list) const {
item_list->AddCreateRegKeyWorkItem(predefined_root, command_path)
->set_log_message("creating AppCommand registry key");
« no previous file with comments | « chrome/installer/util/app_command.h ('k') | chrome/installer/util/auto_launch_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698