| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 1292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1303 // Promo line from server. | 1303 // Promo line from server. |
| 1304 const char kNTPPromoLine[] = "ntp.promo_line"; | 1304 const char kNTPPromoLine[] = "ntp.promo_line"; |
| 1305 | 1305 |
| 1306 // Dates between which the NTP should show a promotional line downloaded | 1306 // Dates between which the NTP should show a promotional line downloaded |
| 1307 // from the promo server. | 1307 // from the promo server. |
| 1308 const char kNTPPromoStart[] = "ntp.promo_start"; | 1308 const char kNTPPromoStart[] = "ntp.promo_start"; |
| 1309 const char kNTPPromoEnd[] = "ntp.promo_end"; | 1309 const char kNTPPromoEnd[] = "ntp.promo_end"; |
| 1310 | 1310 |
| 1311 // A randomly generated group created to control the number of users we show the | 1311 // A randomly generated group created to control the number of users we show the |
| 1312 // sync promo to on the NTP. | 1312 // sync promo to on the NTP. |
| 1313 const char kNTPSyncPromoGroup[] = "ntp.sync_promo.group"; | 1313 const char kNTPSignInPromoGroup[] = "ntp.sign_in_promo.group"; |
| 1314 | 1314 |
| 1315 // The maximum allowable group that can be shown the sync promotion on the NTP. | 1315 // The maximum allowable group that can be shown the sync promotion on the NTP. |
| 1316 const char kNTPSyncPromoGroupMax[] = "ntp.sync_promo.group_max"; | 1316 const char kNTPSignInPromoGroupMax[] = "ntp.sign_in_promo.group_max"; |
| 1317 | 1317 |
| 1318 // Boolean indicating whether the web store is active for the current locale. | 1318 // Boolean indicating whether the web store is active for the current locale. |
| 1319 const char kNTPWebStoreEnabled[] = "ntp.webstore_enabled"; | 1319 const char kNTPWebStoreEnabled[] = "ntp.webstore_enabled"; |
| 1320 | 1320 |
| 1321 // The id of the last web store promo actually displayed on the NTP. | 1321 // The id of the last web store promo actually displayed on the NTP. |
| 1322 const char kNTPWebStorePromoLastId[] = "ntp.webstore_last_promo_id"; | 1322 const char kNTPWebStorePromoLastId[] = "ntp.webstore_last_promo_id"; |
| 1323 | 1323 |
| 1324 // The id of the current web store promo. | 1324 // The id of the current web store promo. |
| 1325 const char kNTPWebStorePromoId[] = "ntp.webstorepromo.id"; | 1325 const char kNTPWebStorePromoId[] = "ntp.webstorepromo.id"; |
| 1326 | 1326 |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1633 | 1633 |
| 1634 // String that represents the recovery component last downloaded version. This | 1634 // String that represents the recovery component last downloaded version. This |
| 1635 // takes the usual 'a.b.c.d' notation. | 1635 // takes the usual 'a.b.c.d' notation. |
| 1636 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1636 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
| 1637 | 1637 |
| 1638 // String that stores the component updater last known state. This is used for | 1638 // String that stores the component updater last known state. This is used for |
| 1639 // troubleshooting. | 1639 // troubleshooting. |
| 1640 const char kComponentUpdaterState[] = "component_updater.state"; | 1640 const char kComponentUpdaterState[] = "component_updater.state"; |
| 1641 | 1641 |
| 1642 } // namespace prefs | 1642 } // namespace prefs |
| OLD | NEW |