| Index: chrome/browser/chromeos/login/wizard_controller.cc
|
| diff --git a/chrome/browser/chromeos/login/wizard_controller.cc b/chrome/browser/chromeos/login/wizard_controller.cc
|
| index 53a9b0007fac28bb82fc4568c226ff920017e844..f8b7c184b1fb5eeabead3e9787bd64da8bc32bfa 100644
|
| --- a/chrome/browser/chromeos/login/wizard_controller.cc
|
| +++ b/chrome/browser/chromeos/login/wizard_controller.cc
|
| @@ -45,6 +45,7 @@
|
| #include "chrome/common/pref_names.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/notification_service.h"
|
| +#include "content/public/browser/notification_source.h"
|
| #include "content/public/browser/notification_types.h"
|
| #include "ui/base/accelerators/accelerator.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| @@ -442,6 +443,12 @@ void WizardController::OnEulaAccepted() {
|
| MarkEulaAccepted();
|
| bool enabled =
|
| OptionsUtil::ResolveMetricsReportingEnabled(usage_statistics_reporting_);
|
| +
|
| + content::NotificationService::current()->Notify(
|
| + chrome::NOTIFICATION_WIZARD_EULA_ACCEPTED,
|
| + content::NotificationSource(content::Source<WizardController>(this)),
|
| + content::NotificationService::NoDetails());
|
| +
|
| CrosSettings::Get()->SetBoolean(kStatsReportingPref, enabled);
|
| if (enabled) {
|
| #if defined(USE_LINUX_BREAKPAD)
|
|
|