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

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

Issue 10823437: Callback flow to register Chrome and update shortcuts after OS upgrade to Windows 8 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Abandoning the use of ON_OS_UPGRADE_SUCCESSFUL installer message. Created 8 years, 4 months 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
Index: chrome/installer/util/app_command.cc
diff --git a/chrome/installer/util/app_command.cc b/chrome/installer/util/app_command.cc
index 588fe86fda307d9615af880aee0c6813d1e3aa1f..1b3cd20894698aabb90d463e627395a9732f1624 100644
--- a/chrome/installer/util/app_command.cc
+++ b/chrome/installer/util/app_command.cc
@@ -11,17 +11,45 @@
namespace installer {
+namespace {
+
+// Helper: Add an optional boolean registry value, specified by value_data.
grt (UTC plus 2) 2012/08/30 04:15:25 The sentence beginning with "In the registry, ..."
huangs 2012/08/30 17:13:07 Done.
+// In the registry, a non-zero value is "true", and a missing or zero value
+// is "false". If value_data == true, add a SetRegValueWorkItem that sets
+// registry value of 1 with REG_DWORD type. Otherwise add a
+// DeleteRegValueWorkItem that deletes the registry value.
+WorkItem* AddSetOptionalBoolRegValueWorkItem(
+ WorkItemList* item_list,
grt (UTC plus 2) 2012/08/30 04:15:25 chromium style: out params go at the end
huangs 2012/08/30 17:13:07 Done.
+ HKEY predefined_root,
+ const string16& key_path,
+ const string16& value_name,
+ bool value_data) {
+ if (value_data) {
+ return item_list->AddSetRegValueWorkItem(predefined_root,
grt (UTC plus 2) 2012/08/30 04:15:25 get rid of the cast by adding: const DWORD kOn
gab 2012/08/30 14:24:32 Interesting, I've never it this way in Chromium, b
grt (UTC plus 2) 2012/08/30 17:06:08 from the compiler's point of view, the two are equ
huangs 2012/08/30 17:13:07 Done.
huangs 2012/08/30 17:13:07 Conflicting reviews... Going with my personal pre
gab 2012/08/30 17:15:50 I disagree that this is more readbable, when one s
grt (UTC plus 2) 2012/08/30 19:10:18 i disagree. in my religious text, good code has n
+ key_path,
+ value_name,
+ static_cast<DWORD>(1),
+ true);
+ } else {
+ return item_list->AddDeleteRegValueWorkItem(predefined_root,
+ key_path,
+ value_name);
+ }
+}
+
+} // namespace
+
AppCommand::AppCommand()
: sends_pings_(false),
- is_web_accessible_(false) {
+ is_web_accessible_(false),
+ is_auto_run_on_os_upgrade_(false) {
}
-AppCommand::AppCommand(const std::wstring& command_line,
- bool sends_pings,
- bool is_web_accessible)
+AppCommand::AppCommand(const string16& command_line)
: command_line_(command_line),
- sends_pings_(sends_pings),
- is_web_accessible_(is_web_accessible) {
+ sends_pings_(false),
+ is_web_accessible_(false),
+ is_auto_run_on_os_upgrade_(false) {
}
bool AppCommand::Initialize(const base::win::RegKey& key) {
@@ -31,9 +59,10 @@ bool AppCommand::Initialize(const base::win::RegKey& key) {
}
LONG result = ERROR_SUCCESS;
- std::wstring cmd_line;
+ string16 cmd_line;
DWORD sends_pings = 0;
DWORD is_web_acc = 0;
+ DWORD is_auto_run_on_os_upgrade = 0;
result = key.ReadValue(google_update::kRegCommandLineField, &cmd_line);
if (result != ERROR_SUCCESS) {
@@ -42,47 +71,48 @@ bool AppCommand::Initialize(const base::win::RegKey& key) {
return false;
}
+ // For the following calls, if result != ERROR_SUCCESS, then the
grt (UTC plus 2) 2012/08/30 04:15:25 I don't think this comment is needed. If you feel
huangs 2012/08/30 17:13:07 Done. So refer to functions by "ReadValueDW", not
+ // value of the output variable (e.g. sends_pings) remains at 0.
result = key.ReadValueDW(google_update::kRegSendsPingsField, &sends_pings);
grt (UTC plus 2) 2012/08/30 04:15:25 remove "result = " here and below
huangs 2012/08/30 17:13:07 Done (embarrassed).
- if (result != ERROR_SUCCESS) {
- LOG(WARNING) << "Error reading " << google_update::kRegSendsPingsField
- << " value from registry: " << result;
- return false;
- }
-
result = key.ReadValueDW(google_update::kRegWebAccessibleField, &is_web_acc);
- if (result != ERROR_SUCCESS) {
- LOG(WARNING) << "Error reading " << google_update::kRegWebAccessibleField
- << " value from registry: " << result;
- return false;
- }
+ result = key.ReadValueDW(google_update::kRegAutoRunOnOSUpgrade,
+ &is_auto_run_on_os_upgrade);
command_line_.swap(cmd_line);
sends_pings_ = (sends_pings != 0);
is_web_accessible_ = (is_web_acc != 0);
+ is_auto_run_on_os_upgrade_ = (is_auto_run_on_os_upgrade != 0);
return true;
}
void AppCommand::AddWorkItems(HKEY predefined_root,
- const std::wstring& command_path,
+ const string16& command_path,
WorkItemList* item_list) const {
- const DWORD sends_pings = sends_pings_ ? 1U : 0U;
- const DWORD is_web_accessible = is_web_accessible_ ? 1U : 0U;
-
item_list->AddCreateRegKeyWorkItem(predefined_root, command_path)
- ->set_log_message("creating quick-enable-cf command registry key");
+ ->set_log_message("creating AppCommand command registry key");
grt (UTC plus 2) 2012/08/30 04:15:25 "AppCommand command" -> "AppCommand"
huangs 2012/08/30 17:13:07 Done.
item_list->AddSetRegValueWorkItem(predefined_root, command_path,
google_update::kRegCommandLineField,
command_line_, true)
- ->set_log_message("setting quick-enable-cf CommandLine registry value");
- item_list->AddSetRegValueWorkItem(predefined_root, command_path,
- google_update::kRegSendsPingsField,
- sends_pings, true)
- ->set_log_message("setting quick-enable-cf SendsPings registry value");
- item_list->AddSetRegValueWorkItem(predefined_root, command_path,
- google_update::kRegWebAccessibleField,
- is_web_accessible, true)
- ->set_log_message("setting quick-enable-cf WebAccessible registry value");
+ ->set_log_message("setting AppCommand CommandLine registry value");
+ AddSetOptionalBoolRegValueWorkItem(item_list,
+ predefined_root,
+ command_path,
+ google_update::kRegSendsPingsField,
+ sends_pings_)
+ ->set_log_message("setting AppCommand SendsPings registry value");
+ AddSetOptionalBoolRegValueWorkItem(item_list,
+ predefined_root,
+ command_path,
+ google_update::kRegWebAccessibleField,
+ is_web_accessible_)
+ ->set_log_message("setting AppCommand WebAccessible registry value");
+ AddSetOptionalBoolRegValueWorkItem(item_list,
+ predefined_root,
+ command_path,
+ google_update::kRegAutoRunOnOSUpgrade,
+ is_auto_run_on_os_upgrade_)
+ ->set_log_message("setting AppCommand AutoRunOnOSUpgrade registry value");
}
} // namespace installer

Powered by Google App Engine
This is Rietveld 408576698