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

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

Issue 856393005: Re-prompt Chrome users to run the SRT when a finch param changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Final nit Created 5 years, 11 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
« no previous file with comments | « components/component_updater/pref_names.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | 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.
(...skipping 13 matching lines...) Expand all
24 24
25 // The exit code integer value of the reporter run that triggered an SRT prompt. 25 // The exit code integer value of the reporter run that triggered an SRT prompt.
26 // Stored in the protected prefs of the profile that owns the browser where the 26 // Stored in the protected prefs of the profile that owns the browser where the
27 // prompt was shown. 27 // prompt was shown.
28 const char kSwReporterPromptReason[] = "software_reporter.prompt_reason"; 28 const char kSwReporterPromptReason[] = "software_reporter.prompt_reason";
29 29
30 // The version string of the reporter that triggered an SRT prompt. An empty 30 // The version string of the reporter that triggered an SRT prompt. An empty
31 // string when the prompt wasn't shown yet. Stored in the protected prefs of the 31 // string when the prompt wasn't shown yet. Stored in the protected prefs of the
32 // profile that owns the browser where the prompt was shown. 32 // profile that owns the browser where the prompt was shown.
33 const char kSwReporterPromptVersion[] = "software_reporter.prompt_version"; 33 const char kSwReporterPromptVersion[] = "software_reporter.prompt_version";
34
35 // A string value uniquely identifying an SRTPrompt campaign so that users that
36 // have been prompted with this seed before won't be prompted again until a new
37 // seed comes in.
38 const char kSwReporterPromptSeed[] = "software_reporter.prompt_seed";
34 #endif 39 #endif
35 40
36 } // namespace prefs 41 } // namespace prefs
OLDNEW
« no previous file with comments | « components/component_updater/pref_names.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698