| 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/macros.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
| 10 | 10 |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 // A list of host names used to fetch web pages, and their commonly used | 422 // A list of host names used to fetch web pages, and their commonly used |
| 423 // sub-resource hostnames (and expected latency benefits from pre-resolving, or | 423 // sub-resource hostnames (and expected latency benefits from pre-resolving, or |
| 424 // preconnecting to, such sub-resource hostnames). | 424 // preconnecting to, such sub-resource hostnames). |
| 425 // This list is adaptively grown and pruned. | 425 // This list is adaptively grown and pruned. |
| 426 const char kDnsPrefetchingHostReferralList[] = | 426 const char kDnsPrefetchingHostReferralList[] = |
| 427 "dns_prefetching.host_referral_list"; | 427 "dns_prefetching.host_referral_list"; |
| 428 | 428 |
| 429 // Prefs for persisting HttpServerProperties. | 429 // Prefs for persisting HttpServerProperties. |
| 430 const char kHttpServerProperties[] = "net.http_server_properties"; | 430 const char kHttpServerProperties[] = "net.http_server_properties"; |
| 431 | 431 |
| 432 // Prefs for persisting network qualities. |
| 433 const char kNetworkQualities[] = "net.network_qualities"; |
| 434 |
| 432 #if defined(OS_ANDROID) | 435 #if defined(OS_ANDROID) |
| 433 // Last time that a check for cloud policy management was done. This time is | 436 // Last time that a check for cloud policy management was done. This time is |
| 434 // recorded on Android so that retries aren't attempted on every startup. | 437 // recorded on Android so that retries aren't attempted on every startup. |
| 435 // Instead the cloud policy registration is retried at least 1 or 3 days later. | 438 // Instead the cloud policy registration is retried at least 1 or 3 days later. |
| 436 const char kLastPolicyCheckTime[] = "policy.last_policy_check_time"; | 439 const char kLastPolicyCheckTime[] = "policy.last_policy_check_time"; |
| 437 #endif | 440 #endif |
| 438 | 441 |
| 439 // Prefix URL for the experimental Instant ZeroSuggest provider. | 442 // Prefix URL for the experimental Instant ZeroSuggest provider. |
| 440 const char kInstantUIZeroSuggestUrlPrefix[] = | 443 const char kInstantUIZeroSuggestUrlPrefix[] = |
| 441 "instant_ui.zero_suggest_url_prefix"; | 444 "instant_ui.zero_suggest_url_prefix"; |
| (...skipping 1812 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2254 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2257 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2255 | 2258 |
| 2256 // A list of origin trial features to disable by policy. | 2259 // A list of origin trial features to disable by policy. |
| 2257 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2260 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2258 | 2261 |
| 2259 // Policy that indicates the state of updates for the binary components. | 2262 // Policy that indicates the state of updates for the binary components. |
| 2260 const char kComponentUpdatesEnabled[] = | 2263 const char kComponentUpdatesEnabled[] = |
| 2261 "component_updates.component_updates_enabled"; | 2264 "component_updates.component_updates_enabled"; |
| 2262 | 2265 |
| 2263 } // namespace prefs | 2266 } // namespace prefs |
| OLD | NEW |