Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: chrome/common/pref_names.cc

Issue 2140733002: Remove HttpStreamFactory::spdy_enabled_ static member and accessors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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.
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 1800 matching lines...) Expand 10 before | Expand all | Expand 10 after
2247 #endif 2248 #endif
2248 2249
2249 // The base64-encoded representation of the public key to use to validate origin 2250 // The base64-encoded representation of the public key to use to validate origin
2250 // trial token signatures. 2251 // trial token signatures.
2251 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; 2252 const char kOriginTrialPublicKey[] = "origin_trials.public_key";
2252 2253
2253 // A list of origin trial features to disable by policy. 2254 // A list of origin trial features to disable by policy.
2254 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; 2255 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features";
2255 2256
2256 } // namespace prefs 2257 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/browser/policy/policy_browsertest.cc ('k') | components/policy/resources/policy_templates.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698