| 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 1774 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1785 "devtools.port_forwarding_default_set"; | 1785 "devtools.port_forwarding_default_set"; |
| 1786 | 1786 |
| 1787 // A dictionary of port->location pairs for port forwarding. | 1787 // A dictionary of port->location pairs for port forwarding. |
| 1788 const char kDevToolsPortForwardingConfig[] = "devtools.port_forwarding_config"; | 1788 const char kDevToolsPortForwardingConfig[] = "devtools.port_forwarding_config"; |
| 1789 | 1789 |
| 1790 #if defined(OS_ANDROID) | 1790 #if defined(OS_ANDROID) |
| 1791 // A boolean specifying whether remote dev tools debugging is enabled. | 1791 // A boolean specifying whether remote dev tools debugging is enabled. |
| 1792 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; | 1792 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; |
| 1793 #endif | 1793 #endif |
| 1794 | 1794 |
| 1795 // An ID to uniquely identify this client to the invalidator service. | |
| 1796 const char kInvalidatorClientId[] = "invalidator.client_id"; | |
| 1797 | |
| 1798 // Opaque state from the invalidation subsystem that is persisted via prefs. | |
| 1799 // The value is base 64 encoded. | |
| 1800 const char kInvalidatorInvalidationState[] = "invalidator.invalidation_state"; | |
| 1801 | |
| 1802 // List of received invalidations that have not been acted on by any clients | |
| 1803 // yet. Used to keep invalidation clients in sync in case of a restart. | |
| 1804 const char kInvalidatorSavedInvalidations[] = "invalidator.saved_invalidations"; | |
| 1805 | |
| 1806 // Boolean indicating that TiclInvalidationService should use GCM channel. | 1795 // Boolean indicating that TiclInvalidationService should use GCM channel. |
| 1807 // False or lack of settings means XMPPPushClient channel. | 1796 // False or lack of settings means XMPPPushClient channel. |
| 1808 const char kInvalidationServiceUseGCMChannel[] = | 1797 const char kInvalidationServiceUseGCMChannel[] = |
| 1809 "invalidation_service.use_gcm_channel"; | 1798 "invalidation_service.use_gcm_channel"; |
| 1810 | 1799 |
| 1811 // Local hash of authentication password, used for off-line authentication | 1800 // Local hash of authentication password, used for off-line authentication |
| 1812 // when on-line authentication is not available. | 1801 // when on-line authentication is not available. |
| 1813 const char kGoogleServicesPasswordHash[] = "google.services.password_hash"; | 1802 const char kGoogleServicesPasswordHash[] = "google.services.password_hash"; |
| 1814 | 1803 |
| 1815 #if !defined(OS_ANDROID) | 1804 #if !defined(OS_ANDROID) |
| (...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2521 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2510 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2522 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2511 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2523 // title or an empty string if the bookmark node was removed. | 2512 // title or an empty string if the bookmark node was removed. |
| 2524 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2513 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2525 #endif | 2514 #endif |
| 2526 | 2515 |
| 2527 // Whether DNS Quick Check is disabled in proxy resolution. | 2516 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2528 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2517 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2529 | 2518 |
| 2530 } // namespace prefs | 2519 } // namespace prefs |
| OLD | NEW |