OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 1461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1472 // standard one. | 1472 // standard one. |
1473 const char kNtpCustomLogoStart[] = "ntp.alt_logo_start"; | 1473 const char kNtpCustomLogoStart[] = "ntp.alt_logo_start"; |
1474 const char kNtpCustomLogoEnd[] = "ntp.alt_logo_end"; | 1474 const char kNtpCustomLogoEnd[] = "ntp.alt_logo_end"; |
1475 | 1475 |
1476 // The promo resource service version number. | 1476 // The promo resource service version number. |
1477 const char kNtpPromoVersion[] = "ntp.promo_version"; | 1477 const char kNtpPromoVersion[] = "ntp.promo_version"; |
1478 | 1478 |
1479 // The last locale the promo was fetched for. | 1479 // The last locale the promo was fetched for. |
1480 const char kNtpPromoLocale[] = "ntp.promo_locale"; | 1480 const char kNtpPromoLocale[] = "ntp.promo_locale"; |
1481 | 1481 |
| 1482 // True if a desktop sync session was found for this user. |
| 1483 const char kNtpPromoDesktopSessionFound[] = "ntp.promo_desktop_session_found"; |
| 1484 |
1482 // Boolean indicating whether the web store is active for the current locale. | 1485 // Boolean indicating whether the web store is active for the current locale. |
1483 const char kNtpWebStoreEnabled[] = "ntp.webstore_enabled"; | 1486 const char kNtpWebStoreEnabled[] = "ntp.webstore_enabled"; |
1484 | 1487 |
1485 // The id of the last web store promo actually displayed on the NTP. | 1488 // The id of the last web store promo actually displayed on the NTP. |
1486 const char kNtpWebStorePromoLastId[] = "ntp.webstore_last_promo_id"; | 1489 const char kNtpWebStorePromoLastId[] = "ntp.webstore_last_promo_id"; |
1487 | 1490 |
1488 // The id of the current web store promo. | 1491 // The id of the current web store promo. |
1489 const char kNtpWebStorePromoId[] = "ntp.webstorepromo.id"; | 1492 const char kNtpWebStorePromoId[] = "ntp.webstorepromo.id"; |
1490 | 1493 |
1491 // The header line for the NTP web store promo. | 1494 // The header line for the NTP web store promo. |
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1986 | 1989 |
1987 // Counts how many more times the 'profile on a network share' warning should be | 1990 // Counts how many more times the 'profile on a network share' warning should be |
1988 // shown to the user before the next silence period. | 1991 // shown to the user before the next silence period. |
1989 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 1992 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
1990 // Tracks the time of the last shown warning. Used to reset | 1993 // Tracks the time of the last shown warning. Used to reset |
1991 // |network_profile.warnings_left| after a silence period. | 1994 // |network_profile.warnings_left| after a silence period. |
1992 const char kNetworkProfileLastWarningTime[] = | 1995 const char kNetworkProfileLastWarningTime[] = |
1993 "network_profile.last_warning_time"; | 1996 "network_profile.last_warning_time"; |
1994 | 1997 |
1995 } // namespace prefs | 1998 } // namespace prefs |
OLD | NEW |