Index: chrome/installer/util/shell_util.cc |
diff --git a/chrome/installer/util/shell_util.cc b/chrome/installer/util/shell_util.cc |
index 8477b8de81c91a7600f0bda1ee8db842559cec42..b94ffbe091b878258b2c3a526e47d70f326365f6 100644 |
--- a/chrome/installer/util/shell_util.cc |
+++ b/chrome/installer/util/shell_util.cc |
@@ -2069,17 +2069,16 @@ bool ShellUtil::RemoveShortcuts(ShellUtil::ShortcutLocation location, |
} |
// static |
-bool ShellUtil::UpdateShortcuts( |
+bool ShellUtil::UpdateShortcutsWithArgs( |
ShellUtil::ShortcutLocation location, |
BrowserDistribution* dist, |
ShellChange level, |
const base::FilePath& target_exe, |
- bool require_args, |
const ShellUtil::ShortcutProperties& properties) { |
if (!ShellUtil::ShortcutLocationIsSupported(location)) |
return true; // Vacuous success. |
- FilterTargetEq shortcut_filter(target_exe, require_args); |
+ FilterTargetEq shortcut_filter(target_exe, true); |
ShortcutOperationCallback shortcut_operation( |
base::Bind(&ShortcutOpUpdate, TranslateShortcutProperties(properties))); |
return BatchShortcutAction(shortcut_filter.AsShortcutFilterCallback(), |