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

Side by Side Diff: chrome/browser/ui/options/options_util.cc

Issue 365253004: Move options_util.* into chrome/browser/metrics. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: REBASE Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/ui/options/options_util.h"
6
7 #include "base/threading/thread_restrictions.h"
8 #include "chrome/browser/browser_process.h"
9 #include "chrome/installer/util/google_update_settings.h"
10 #include "components/metrics/metrics_service.h"
11
12 // static
13 bool OptionsUtil::ResolveMetricsReportingEnabled(bool enabled) {
14 // GoogleUpdateSettings touches the disk from the UI thread. MetricsService
15 // also calls GoogleUpdateSettings below. http://crbug/62626
16 base::ThreadRestrictions::ScopedAllowIO allow_io;
17
18 GoogleUpdateSettings::SetCollectStatsConsent(enabled);
19 bool update_pref = GoogleUpdateSettings::GetCollectStatsConsent();
20
21 if (enabled != update_pref)
22 DVLOG(1) << "OptionsUtil: Unable to set crash report status to " << enabled;
23
24 // Only change the pref if GoogleUpdateSettings::GetCollectStatsConsent
25 // succeeds.
26 enabled = update_pref;
27
28 MetricsService* metrics = g_browser_process->metrics_service();
29 if (metrics) {
30 if (enabled)
31 metrics->Start();
32 else
33 metrics->Stop();
34 }
35
36 return enabled;
37 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/options/options_util.h ('k') | chrome/browser/ui/views/session_crashed_bubble_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698