Chromium Code Reviews| 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. |
| 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 last time SwReporter was triggered. | 14 // The last time SwReporter was triggered. |
| 15 const char kSwReporterLastTimeTriggered[] = | 15 const char kSwReporterLastTimeTriggered[] = |
| 16 "software_reporter.last_time_triggered"; | 16 "software_reporter.last_time_triggered"; |
| 17 extern const char kSwReporterPromptState[] = "software_reporter.prompt_state"; | |
|
engedy
2014/09/24 10:14:45
nit: Remove extern.
MAD
2014/09/24 11:12:33
Done.
| |
| 17 #endif | 18 #endif |
| 18 | 19 |
| 19 } // namespace prefs | 20 } // namespace prefs |
| OLD | NEW |