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

Side by Side Diff: components/component_updater/pref_names.cc

Issue 495643002: Trigger the SW reporter to run once a week for users with UMA enabled. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix namespace Created 6 years, 3 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
« no previous file with comments | « components/component_updater/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/component_updater/pref_names.h" 5 #include "components/component_updater/pref_names.h"
6 6
7 namespace prefs { 7 namespace prefs {
8 8
9 // String that represents the recovery component last downloaded version. This 9 // String that represents the recovery component last downloaded version. This
10 // takes the usual 'a.b.c.d' notation. 10 // takes the usual 'a.b.c.d' notation.
11 const char kRecoveryComponentVersion[] = "recovery_component.version"; 11 const char kRecoveryComponentVersion[] = "recovery_component.version";
12 12
13 #if defined(OS_WIN) 13 #if defined(OS_WIN)
14 // The number of attempts left to execute the SwReporter. This starts at the max 14 // The last time SwReporter was triggered.
15 // number of retries allowed, and goes down as attempts are made and is cleared 15 const char kSwReporterLastTimeTriggered[] =
16 // back to 0 when it successfully completes. 16 "software_reporter.last_time_triggered";
17 const char kSwReporterExecuteTryCount[] = "software_reporter.execute_try_count";
18 #endif 17 #endif
19 18
20 } // namespace prefs 19 } // namespace prefs
OLDNEW
« no previous file with comments | « components/component_updater/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698