| 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 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 const char kAlternateProtocolServers[] = "spdy.alternate_protocol"; | 469 const char kAlternateProtocolServers[] = "spdy.alternate_protocol"; |
| 470 | 470 |
| 471 // Disables the listed protocol schemes. | 471 // Disables the listed protocol schemes. |
| 472 const char kDisabledSchemes[] = "protocol.disabled_schemes"; | 472 const char kDisabledSchemes[] = "protocol.disabled_schemes"; |
| 473 | 473 |
| 474 #if defined(OS_ANDROID) || defined(OS_IOS) | 474 #if defined(OS_ANDROID) || defined(OS_IOS) |
| 475 // Last time that a check for cloud policy management was done. This time is | 475 // Last time that a check for cloud policy management was done. This time is |
| 476 // recorded on Android so that retries aren't attempted on every startup. | 476 // recorded on Android so that retries aren't attempted on every startup. |
| 477 // Instead the cloud policy registration is retried at least 1 or 3 days later. | 477 // Instead the cloud policy registration is retried at least 1 or 3 days later. |
| 478 const char kLastPolicyCheckTime[] = "policy.last_policy_check_time"; | 478 const char kLastPolicyCheckTime[] = "policy.last_policy_check_time"; |
| 479 | |
| 480 // A list of bookmarks to include in a Managed Bookmarks root node. Each | |
| 481 // list item is a dictionary containing a "name" and an "url" entry, detailing | |
| 482 // the bookmark name and target URL respectively. | |
| 483 const char kManagedBookmarks[] = "policy.managed_bookmarks"; | |
| 484 #endif | 479 #endif |
| 485 | 480 |
| 486 // Prefix URL for the experimental Instant ZeroSuggest provider. | 481 // Prefix URL for the experimental Instant ZeroSuggest provider. |
| 487 const char kInstantUIZeroSuggestUrlPrefix[] = | 482 const char kInstantUIZeroSuggestUrlPrefix[] = |
| 488 "instant_ui.zero_suggest_url_prefix"; | 483 "instant_ui.zero_suggest_url_prefix"; |
| 489 | 484 |
| 490 // Used to migrate preferences from local state to user preferences to | 485 // Used to migrate preferences from local state to user preferences to |
| 491 // enable multiple profiles. | 486 // enable multiple profiles. |
| 492 // BITMASK with possible values (see browser_prefs.cc for enum): | 487 // BITMASK with possible values (see browser_prefs.cc for enum): |
| 493 // 0: No preferences migrated. | 488 // 0: No preferences migrated. |
| (...skipping 2016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2510 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2505 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2511 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2506 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2512 // title or an empty string if the bookmark node was removed. | 2507 // title or an empty string if the bookmark node was removed. |
| 2513 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2508 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2514 #endif | 2509 #endif |
| 2515 | 2510 |
| 2516 // Whether DNS Quick Check is disabled in proxy resolution. | 2511 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2517 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2512 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2518 | 2513 |
| 2519 } // namespace prefs | 2514 } // namespace prefs |
| OLD | NEW |