OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 // A list of host names used to fetch web pages, and their commonly used | 324 // A list of host names used to fetch web pages, and their commonly used |
325 // sub-resource hostnames (and expected latency benefits from pre-resolving, or | 325 // sub-resource hostnames (and expected latency benefits from pre-resolving, or |
326 // preconnecting to, such sub-resource hostnames). | 326 // preconnecting to, such sub-resource hostnames). |
327 // This list is adaptively grown and pruned. | 327 // This list is adaptively grown and pruned. |
328 const char kDnsPrefetchingHostReferralList[] = | 328 const char kDnsPrefetchingHostReferralList[] = |
329 "dns_prefetching.host_referral_list"; | 329 "dns_prefetching.host_referral_list"; |
330 | 330 |
331 // Disables the SPDY protocol. | 331 // Disables the SPDY protocol. |
332 const char kDisableSpdy[] = "spdy.disabled"; | 332 const char kDisableSpdy[] = "spdy.disabled"; |
333 | 333 |
| 334 // Prefs for server names that support SPDY protocol. |
| 335 const char kSpdyServers[] = "spdy.servers"; |
| 336 |
334 // Disables the listed protocol schemes. | 337 // Disables the listed protocol schemes. |
335 const char kDisabledSchemes[] = "protocol.disabled_schemes"; | 338 const char kDisabledSchemes[] = "protocol.disabled_schemes"; |
336 | 339 |
337 // Boolean pref indicating whether the instant confirm dialog has been shown. | 340 // Boolean pref indicating whether the instant confirm dialog has been shown. |
338 const char kInstantConfirmDialogShown[] = "instant.confirm_dialog_shown"; | 341 const char kInstantConfirmDialogShown[] = "instant.confirm_dialog_shown"; |
339 | 342 |
340 // Boolean pref indicating if instant is enabled. | 343 // Boolean pref indicating if instant is enabled. |
341 const char kInstantEnabled[] = "instant.enabled"; | 344 const char kInstantEnabled[] = "instant.enabled"; |
342 | 345 |
343 // Boolean pref indicating if instant was ever enabled. | 346 // Boolean pref indicating if instant was ever enabled. |
(...skipping 1231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1575 // specified. | 1578 // specified. |
1576 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1579 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1577 | 1580 |
1578 // Integers that specify the policy refresh rate for device- and user-policy in | 1581 // Integers that specify the policy refresh rate for device- and user-policy in |
1579 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1582 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1580 // by the cloud policy subsystem. | 1583 // by the cloud policy subsystem. |
1581 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1584 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1582 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1585 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1583 | 1586 |
1584 } // namespace prefs | 1587 } // namespace prefs |
OLD | NEW |