| Index: chrome/browser/first_run.cc
|
| ===================================================================
|
| --- chrome/browser/first_run.cc (revision 9323)
|
| +++ chrome/browser/first_run.cc (working copy)
|
| @@ -220,7 +220,10 @@
|
| LOG(WARNING) << "EULA rejected. Fast exit.";
|
| ::ExitProcess(1);
|
| }
|
| - if (retcode == installer_util::EULA_ACCEPTED_OPT_IN) {
|
| + if (retcode == installer_util::EULA_ACCEPTED) {
|
| + LOG(INFO) << "EULA : no collection";
|
| + GoogleUpdateSettings::SetCollectStatsConsent(false);
|
| + } else if (retcode == installer_util::EULA_ACCEPTED_OPT_IN) {
|
| LOG(INFO) << "EULA : collection consent";
|
| GoogleUpdateSettings::SetCollectStatsConsent(true);
|
| }
|
|
|