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