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

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

Issue 2621923002: Product cleanups in the wake of multi-install removal. (Closed)
Patch Set: sync to position 442831 Created 3 years, 11 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
« no previous file with comments | « chrome/installer/util/chrome_browser_sxs_operations.h ('k') | chrome/installer/util/google_update_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/chrome_browser_sxs_operations.cc
diff --git a/chrome/installer/util/chrome_browser_sxs_operations.cc b/chrome/installer/util/chrome_browser_sxs_operations.cc
index 71798c345b87f4e19c1f8695074056e456b1cb49..d3a5250d2cab054eef03edcba0c45f0ac95b56c1 100644
--- a/chrome/installer/util/chrome_browser_sxs_operations.cc
+++ b/chrome/installer/util/chrome_browser_sxs_operations.cc
@@ -11,21 +11,19 @@
namespace installer {
void ChromeBrowserSxSOperations::AppendProductFlags(
- const std::set<base::string16>& options,
base::CommandLine* cmd_line) const {
DCHECK(cmd_line);
cmd_line->AppendSwitch(switches::kChromeSxS);
- ChromeBrowserOperations::AppendProductFlags(options, cmd_line);
+ ChromeBrowserOperations::AppendProductFlags(cmd_line);
}
void ChromeBrowserSxSOperations::AppendRenameFlags(
- const std::set<base::string16>& options,
base::CommandLine* cmd_line) const {
DCHECK(cmd_line);
cmd_line->AppendSwitch(switches::kChromeSxS);
- ChromeBrowserOperations::AppendRenameFlags(options, cmd_line);
+ ChromeBrowserOperations::AppendRenameFlags(cmd_line);
}
} // namespace installer
« no previous file with comments | « chrome/installer/util/chrome_browser_sxs_operations.h ('k') | chrome/installer/util/google_update_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698