| Index: chrome/installer/setup/setup_main.cc
|
| diff --git a/chrome/installer/setup/setup_main.cc b/chrome/installer/setup/setup_main.cc
|
| index e180b427ed1a7d141aee59b3c0d389147a759f4b..b856d5d40dc775d0ad01fb9820ec0a5be84d9592 100644
|
| --- a/chrome/installer/setup/setup_main.cc
|
| +++ b/chrome/installer/setup/setup_main.cc
|
| @@ -891,8 +891,10 @@ bool HandleNonInstallCmdLineOptions(const InstallationState& original_state,
|
| std::wstring inner_frame =
|
| cmd_line.GetSwitchValueNative(installer::switches::kShowEula);
|
| *exit_code = ShowEULADialog(inner_frame);
|
| - if (installer::EULA_REJECTED != *exit_code)
|
| - GoogleUpdateSettings::SetEULAConsent(original_state, true);
|
| + if (installer::EULA_REJECTED != *exit_code) {
|
| + GoogleUpdateSettings::SetEULAConsent(
|
| + original_state, BrowserDistribution::GetDistribution(), true);
|
| + }
|
| } else if (cmd_line.HasSwitch(
|
| installer::switches::kRegisterChromeBrowser)) {
|
| installer::InstallStatus status = installer::UNKNOWN_STATUS;
|
|
|