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 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
495 const char kAlternateProtocolServers[] = "spdy.alternate_protocol"; | 495 const char kAlternateProtocolServers[] = "spdy.alternate_protocol"; |
496 | 496 |
497 // Disables the listed protocol schemes. | 497 // Disables the listed protocol schemes. |
498 const char kDisabledSchemes[] = "protocol.disabled_schemes"; | 498 const char kDisabledSchemes[] = "protocol.disabled_schemes"; |
499 | 499 |
500 #if defined(OS_ANDROID) | 500 #if defined(OS_ANDROID) |
501 // Last time that a check for cloud policy management was done. This time is | 501 // Last time that a check for cloud policy management was done. This time is |
502 // recorded on Android so that retries aren't attempted on every startup. | 502 // recorded on Android so that retries aren't attempted on every startup. |
503 // Instead the cloud policy registration is retried at least 1 or 3 days later. | 503 // Instead the cloud policy registration is retried at least 1 or 3 days later. |
504 const char kLastPolicyCheckTime[] = "policy.last_policy_check_time"; | 504 const char kLastPolicyCheckTime[] = "policy.last_policy_check_time"; |
| 505 #endif |
505 | 506 |
| 507 #if defined(OS_ANDROID) || defined(OS_IOS) |
506 // A list of bookmarks to include in a Managed Bookmarks root node. Each | 508 // A list of bookmarks to include in a Managed Bookmarks root node. Each |
507 // list item is a dictionary containing a "name" and an "url" entry, detailing | 509 // list item is a dictionary containing a "name" and an "url" entry, detailing |
508 // the bookmark name and target URL respectively. | 510 // the bookmark name and target URL respectively. |
509 const char kManagedBookmarks[] = "policy.managed_bookmarks"; | 511 const char kManagedBookmarks[] = "policy.managed_bookmarks"; |
510 #endif | 512 #endif |
511 | 513 |
512 // Prefix URL for the experimental Instant ZeroSuggest provider. | 514 // Prefix URL for the experimental Instant ZeroSuggest provider. |
513 const char kInstantUIZeroSuggestUrlPrefix[] = | 515 const char kInstantUIZeroSuggestUrlPrefix[] = |
514 "instant_ui.zero_suggest_url_prefix"; | 516 "instant_ui.zero_suggest_url_prefix"; |
515 | 517 |
(...skipping 2147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2663 // Each list item is a dictionary containing a "url", a "provider_title" and | 2665 // Each list item is a dictionary containing a "url", a "provider_title" and |
2664 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2666 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2665 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2667 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2666 // title or an empty string if the bookmark node was removed. | 2668 // title or an empty string if the bookmark node was removed. |
2667 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2669 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2668 #endif | 2670 #endif |
2669 | 2671 |
2670 // Whether DNS Quick Check is disabled in proxy resolution. | 2672 // Whether DNS Quick Check is disabled in proxy resolution. |
2671 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2673 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2672 } // namespace prefs | 2674 } // namespace prefs |
OLD | NEW |