OLD | NEW |
---|---|
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 Loading... | |
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 value uniquely identifying an SRTPrompt campaign so that users that have | |
gab
2015/01/26 13:29:12
s/value/string (or "string value") -- i.e., make s
MAD
2015/01/27 19:34:18
Done.
| |
36 // been prompted with this seed before won't be prompted again until a new seed | |
37 // comes in. | |
38 const char kSwReporterPromptSeed[] = "software_reporter.prompt_seed"; | |
34 #endif | 39 #endif |
35 | 40 |
36 } // namespace prefs | 41 } // namespace prefs |
OLD | NEW |