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

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

Issue 7005019: Put SxS switches back into the rename command. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 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/chrome_browser_sxs_operations.cc
===================================================================
--- chrome/installer/util/chrome_browser_sxs_operations.cc (revision 84779)
+++ chrome/installer/util/chrome_browser_sxs_operations.cc (working copy)
@@ -10,13 +10,22 @@
namespace installer {
-void ChromeBrowserSxSOperations::AppendProductFlags(
+void ChromeBrowserSxSOperations::AppendUninstallFlags(
const std::set<std::wstring>& options,
- CommandLine* uninstall_command) const {
- DCHECK(uninstall_command);
+ CommandLine* cmd_line) const {
+ DCHECK(cmd_line);
- uninstall_command->AppendSwitch(switches::kChromeSxS);
- ChromeBrowserOperations::AppendProductFlags(options, uninstall_command);
+ cmd_line->AppendSwitch(switches::kChromeSxS);
+ ChromeBrowserOperations::AppendUninstallFlags(options, cmd_line);
}
+void ChromeBrowserSxSOperations::AppendRenameFlags(
+ const std::set<std::wstring>& options,
+ CommandLine* cmd_line) const {
+ DCHECK(cmd_line);
+
+ cmd_line->AppendSwitch(switches::kChromeSxS);
+ ChromeBrowserOperations::AppendRenameFlags(options, cmd_line);
+}
+
} // namespace installer
« no previous file with comments | « chrome/installer/util/chrome_browser_sxs_operations.h ('k') | chrome/installer/util/chrome_frame_operations.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698