Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(893)

Unified Diff: chrome/browser/chromeos/login/eula_view.cc

Issue 3069028: EULA screen enabling/disabling crash/metrics reporting renovated.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/eula_view.cc
===================================================================
--- chrome/browser/chromeos/login/eula_view.cc (revision 54904)
+++ chrome/browser/chromeos/login/eula_view.cc (working copy)
@@ -17,6 +17,8 @@
#include "chrome/browser/chromeos/login/network_screen_delegate.h"
#include "chrome/browser/chromeos/login/rounded_rect_painter.h"
#include "chrome/browser/chromeos/login/wizard_controller.h"
+#include "chrome/browser/options_util.h"
+#include "chrome/browser/pref_service.h"
#include "chrome/browser/profile_manager.h"
#include "chrome/browser/renderer_host/site_instance.h"
#include "chrome/browser/tab_contents/tab_contents.h"
@@ -33,6 +35,10 @@
#include "views/layout_manager.h"
#include "views/standard_layout.h"
+#if defined(USE_LINUX_BREAKPAD)
+#include "chrome/app/breakpad_linux.h"
+#endif
+
namespace {
const int kBorderSize = 10;
@@ -181,7 +187,8 @@
usage_statistics_checkbox_ = new views::Checkbox();
usage_statistics_checkbox_->SetMultiLine(true);
usage_statistics_checkbox_->SetChecked(
- GoogleUpdateSettings::GetCollectStatsConsent());
+ g_browser_process->local_state()->GetBoolean(
+ prefs::kMetricsReportingEnabled));
layout->AddView(usage_statistics_checkbox_);
layout->StartRow(0, SINGLE_LINK_WITH_SHIFT_ROW);
@@ -270,8 +277,18 @@
void EulaView::ButtonPressed(views::Button* sender, const views::Event& event) {
if (sender == continue_button_) {
if (usage_statistics_checkbox_) {
- GoogleUpdateSettings::SetCollectStatsConsent(
- usage_statistics_checkbox_->checked());
+ const bool enable_reporting = usage_statistics_checkbox_->checked();
+ PrefService* prefs = g_browser_process->local_state();
+ if (prefs->GetBoolean(prefs::kMetricsReportingEnabled) !=
+ enable_reporting) {
+ prefs->SetBoolean(prefs::kMetricsReportingEnabled, enable_reporting);
Mattias Nissler (ping if slow) 2010/08/05 07:57:12 I'm not current on the plans for ChromeOS w.r.t. c
+ prefs->SavePersistentPrefs();
+ OptionsUtil::ResolveMetricsReportingEnabled(enable_reporting);
+#if defined(USE_LINUX_BREAKPAD)
+ if (enable_reporting)
+ InitCrashReporter();
+#endif
+ }
}
observer_->OnExit(ScreenObserver::EULA_ACCEPTED);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698