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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
380 // A list of host names used to fetch web pages, and their commonly used | 380 // A list of host names used to fetch web pages, and their commonly used |
381 // sub-resource hostnames (and expected latency benefits from pre-resolving, or | 381 // sub-resource hostnames (and expected latency benefits from pre-resolving, or |
382 // preconnecting to, such sub-resource hostnames). | 382 // preconnecting to, such sub-resource hostnames). |
383 // This list is adaptively grown and pruned. | 383 // This list is adaptively grown and pruned. |
384 const char kDnsPrefetchingHostReferralList[] = | 384 const char kDnsPrefetchingHostReferralList[] = |
385 "dns_prefetching.host_referral_list"; | 385 "dns_prefetching.host_referral_list"; |
386 | 386 |
387 // Disables the SPDY protocol. | 387 // Disables the SPDY protocol. |
388 const char kDisableSpdy[] = "spdy.disabled"; | 388 const char kDisableSpdy[] = "spdy.disabled"; |
389 | 389 |
| 390 // Disables the QUIC protocol. |
| 391 const char kQuicEnabled[] = "quic.enabled"; |
| 392 |
390 // Prefs for persisting HttpServerProperties. | 393 // Prefs for persisting HttpServerProperties. |
391 const char kHttpServerProperties[] = "net.http_server_properties"; | 394 const char kHttpServerProperties[] = "net.http_server_properties"; |
392 | 395 |
393 // Prefs for server names that support SPDY protocol. | 396 // Prefs for server names that support SPDY protocol. |
394 const char kSpdyServers[] = "spdy.servers"; | 397 const char kSpdyServers[] = "spdy.servers"; |
395 | 398 |
396 // Prefs for servers that support Alternate-Protocol. | 399 // Prefs for servers that support Alternate-Protocol. |
397 const char kAlternateProtocolServers[] = "spdy.alternate_protocol"; | 400 const char kAlternateProtocolServers[] = "spdy.alternate_protocol"; |
398 | 401 |
399 // Disables the listed protocol schemes. | 402 // Disables the listed protocol schemes. |
(...skipping 1882 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2282 // (name and a list of clients that registered the whitelist). | 2285 // (name and a list of clients that registered the whitelist). |
2283 const char kRegisteredSupervisedUserWhitelists[] = | 2286 const char kRegisteredSupervisedUserWhitelists[] = |
2284 "supervised_users.whitelists"; | 2287 "supervised_users.whitelists"; |
2285 | 2288 |
2286 #if defined(ENABLE_EXTENSIONS) | 2289 #if defined(ENABLE_EXTENSIONS) |
2287 // Policy that indicates how to handle animated images. | 2290 // Policy that indicates how to handle animated images. |
2288 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2291 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2289 #endif | 2292 #endif |
2290 | 2293 |
2291 } // namespace prefs | 2294 } // namespace prefs |
OLD | NEW |