Index: chrome/installer/util/google_chrome_sxs_distribution.cc |
=================================================================== |
--- chrome/installer/util/google_chrome_sxs_distribution.cc (revision 72487) |
+++ chrome/installer/util/google_chrome_sxs_distribution.cc (working copy) |
@@ -9,7 +9,7 @@ |
#include "base/command_line.h" |
#include "base/logging.h" |
-#include "installer_util_strings.h" |
+#include "installer_util_strings.h" // NOLINT |
namespace { |
@@ -20,9 +20,8 @@ |
} // namespace |
-GoogleChromeSxSDistribution::GoogleChromeSxSDistribution( |
- const installer::MasterPreferences& prefs) |
- : GoogleChromeDistribution(prefs) { |
+GoogleChromeSxSDistribution::GoogleChromeSxSDistribution() |
+ : GoogleChromeDistribution() { |
GoogleChromeDistribution::set_product_guid(kChromeSxSGuid); |
} |
@@ -62,9 +61,3 @@ |
std::wstring GoogleChromeSxSDistribution::ChannelName() { |
return kChannelName; |
} |
- |
-void GoogleChromeSxSDistribution::AppendUninstallCommandLineFlags( |
- CommandLine* cmd_line) { |
- DCHECK(cmd_line); |
- cmd_line->AppendSwitch(installer::switches::kChromeSxS); |
-} |