Chromium Code Reviews| 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 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 426 // next startup, based on what was actually needed during this startup. | 426 // next startup, based on what was actually needed during this startup. |
| 427 const char kDnsPrefetchingStartupList[] = "dns_prefetching.startup_list"; | 427 const char kDnsPrefetchingStartupList[] = "dns_prefetching.startup_list"; |
| 428 | 428 |
| 429 // A list of host names used to fetch web pages, and their commonly used | 429 // A list of host names used to fetch web pages, and their commonly used |
| 430 // sub-resource hostnames (and expected latency benefits from pre-resolving, or | 430 // sub-resource hostnames (and expected latency benefits from pre-resolving, or |
| 431 // preconnecting to, such sub-resource hostnames). | 431 // preconnecting to, such sub-resource hostnames). |
| 432 // This list is adaptively grown and pruned. | 432 // This list is adaptively grown and pruned. |
| 433 const char kDnsPrefetchingHostReferralList[] = | 433 const char kDnsPrefetchingHostReferralList[] = |
| 434 "dns_prefetching.host_referral_list"; | 434 "dns_prefetching.host_referral_list"; |
| 435 | 435 |
| 436 // Disables the SPDY protocol. | 436 // Disables the SPDY/3.1 protocol. |
| 437 // DEPRECATED: SPDY/3.1 is not supported any more. | |
|
mef
2016/07/13 18:26:32
Is there a separate setting to disable Http/2, or
Bence
2016/07/15 20:35:33
There is no enterprice policy to disable HTTP/2.
| |
| 437 const char kDisableSpdy[] = "spdy.disabled"; | 438 const char kDisableSpdy[] = "spdy.disabled"; |
| 438 | 439 |
| 439 // Prefs for persisting HttpServerProperties. | 440 // Prefs for persisting HttpServerProperties. |
| 440 const char kHttpServerProperties[] = "net.http_server_properties"; | 441 const char kHttpServerProperties[] = "net.http_server_properties"; |
| 441 | 442 |
| 442 #if defined(OS_ANDROID) | 443 #if defined(OS_ANDROID) |
| 443 // Last time that a check for cloud policy management was done. This time is | 444 // Last time that a check for cloud policy management was done. This time is |
| 444 // recorded on Android so that retries aren't attempted on every startup. | 445 // recorded on Android so that retries aren't attempted on every startup. |
| 445 // Instead the cloud policy registration is retried at least 1 or 3 days later. | 446 // Instead the cloud policy registration is retried at least 1 or 3 days later. |
| 446 const char kLastPolicyCheckTime[] = "policy.last_policy_check_time"; | 447 const char kLastPolicyCheckTime[] = "policy.last_policy_check_time"; |
| (...skipping 1803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2250 #endif | 2251 #endif |
| 2251 | 2252 |
| 2252 // The base64-encoded representation of the public key to use to validate origin | 2253 // The base64-encoded representation of the public key to use to validate origin |
| 2253 // trial token signatures. | 2254 // trial token signatures. |
| 2254 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; | 2255 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; |
| 2255 | 2256 |
| 2256 // A list of origin trial features to disable by policy. | 2257 // A list of origin trial features to disable by policy. |
| 2257 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; | 2258 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; |
| 2258 | 2259 |
| 2259 } // namespace prefs | 2260 } // namespace prefs |
| OLD | NEW |