| 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 "build/build_config.h" |
| 5 #include "components/component_updater/pref_names.h" | 6 #include "components/component_updater/pref_names.h" |
| 6 | 7 |
| 7 namespace prefs { | 8 namespace prefs { |
| 8 | 9 |
| 9 // String that represents the recovery component last downloaded version. This | 10 // String that represents the recovery component last downloaded version. This |
| 10 // takes the usual 'a.b.c.d' notation. | 11 // takes the usual 'a.b.c.d' notation. |
| 11 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 12 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
| 12 | 13 |
| 13 // Full path where last recovery component CRX was unpacked to. | 14 // Full path where last recovery component CRX was unpacked to. |
| 14 const char kRecoveryComponentUnpackPath[] = "recovery_component.unpack_path"; | 15 const char kRecoveryComponentUnpackPath[] = "recovery_component.unpack_path"; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 30 // profile that owns the browser where the prompt was shown. | 31 // profile that owns the browser where the prompt was shown. |
| 31 const char kSwReporterPromptVersion[] = "software_reporter.prompt_version"; | 32 const char kSwReporterPromptVersion[] = "software_reporter.prompt_version"; |
| 32 | 33 |
| 33 // A string value uniquely identifying an SRTPrompt campaign so that users that | 34 // A string value uniquely identifying an SRTPrompt campaign so that users that |
| 34 // have been prompted with this seed before won't be prompted again until a new | 35 // have been prompted with this seed before won't be prompted again until a new |
| 35 // seed comes in. | 36 // seed comes in. |
| 36 const char kSwReporterPromptSeed[] = "software_reporter.prompt_seed"; | 37 const char kSwReporterPromptSeed[] = "software_reporter.prompt_seed"; |
| 37 #endif | 38 #endif |
| 38 | 39 |
| 39 } // namespace prefs | 40 } // namespace prefs |
| OLD | NEW |