| 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
|
|
|