| 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 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
| 9 | 9 |
| 10 namespace prefs { | 10 namespace prefs { |
| (...skipping 1818 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1829 | 1829 |
| 1830 // List of received invalidations that have not been acted on by any clients | 1830 // List of received invalidations that have not been acted on by any clients |
| 1831 // yet. Used to keep invalidation clients in sync in case of a restart. | 1831 // yet. Used to keep invalidation clients in sync in case of a restart. |
| 1832 const char kInvalidatorSavedInvalidations[] = "invalidator.saved_invalidations"; | 1832 const char kInvalidatorSavedInvalidations[] = "invalidator.saved_invalidations"; |
| 1833 | 1833 |
| 1834 // Boolean indicating that TiclInvalidationService should use GCM channel. | 1834 // Boolean indicating that TiclInvalidationService should use GCM channel. |
| 1835 // False or lack of settings means XMPPPushClient channel. | 1835 // False or lack of settings means XMPPPushClient channel. |
| 1836 const char kInvalidationServiceUseGCMChannel[] = | 1836 const char kInvalidationServiceUseGCMChannel[] = |
| 1837 "invalidation_service.use_gcm_channel"; | 1837 "invalidation_service.use_gcm_channel"; |
| 1838 | 1838 |
| 1839 // Local state pref containing a string regex that restricts which accounts | |
| 1840 // can be used to log in to chrome (e.g. "*@google.com"). If missing or blank, | |
| 1841 // all accounts are allowed (no restrictions). | |
| 1842 const char kGoogleServicesUsernamePattern[] = | |
| 1843 "google.services.username_pattern"; | |
| 1844 | |
| 1845 // Local hash of authentication password, used for off-line authentication | 1839 // Local hash of authentication password, used for off-line authentication |
| 1846 // when on-line authentication is not available. | 1840 // when on-line authentication is not available. |
| 1847 const char kGoogleServicesPasswordHash[] = "google.services.password_hash"; | 1841 const char kGoogleServicesPasswordHash[] = "google.services.password_hash"; |
| 1848 | 1842 |
| 1849 #if !defined(OS_ANDROID) | 1843 #if !defined(OS_ANDROID) |
| 1850 // Tracks the number of times that we have shown the sign in promo at startup. | 1844 // Tracks the number of times that we have shown the sign in promo at startup. |
| 1851 const char kSignInPromoStartupCount[] = "sync_promo.startup_count"; | 1845 const char kSignInPromoStartupCount[] = "sync_promo.startup_count"; |
| 1852 | 1846 |
| 1853 // Boolean tracking whether the user chose to skip the sign in promo. | 1847 // Boolean tracking whether the user chose to skip the sign in promo. |
| 1854 const char kSignInPromoUserSkipped[] = "sync_promo.user_skipped"; | 1848 const char kSignInPromoUserSkipped[] = "sync_promo.user_skipped"; |
| (...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2590 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2584 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2591 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2585 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2592 // title or an empty string if the bookmark node was removed. | 2586 // title or an empty string if the bookmark node was removed. |
| 2593 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2587 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2594 #endif | 2588 #endif |
| 2595 | 2589 |
| 2596 // Whether DNS Quick Check is disabled in proxy resolution. | 2590 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2597 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2591 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2598 | 2592 |
| 2599 } // namespace prefs | 2593 } // namespace prefs |
| OLD | NEW |