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

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

Issue 7827033: Introduce net::HttpServerPropertiesManager to manage server-specific properties. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome/test/base/testing_profile.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 // A list of host names used to fetch web pages, and their commonly used 320 // A list of host names used to fetch web pages, and their commonly used
321 // sub-resource hostnames (and expected latency benefits from pre-resolving, or 321 // sub-resource hostnames (and expected latency benefits from pre-resolving, or
322 // preconnecting to, such sub-resource hostnames). 322 // preconnecting to, such sub-resource hostnames).
323 // This list is adaptively grown and pruned. 323 // This list is adaptively grown and pruned.
324 const char kDnsPrefetchingHostReferralList[] = 324 const char kDnsPrefetchingHostReferralList[] =
325 "dns_prefetching.host_referral_list"; 325 "dns_prefetching.host_referral_list";
326 326
327 // Disables the SPDY protocol. 327 // Disables the SPDY protocol.
328 const char kDisableSpdy[] = "spdy.disabled"; 328 const char kDisableSpdy[] = "spdy.disabled";
329 329
330 // Prefs for server names that support SPDY protocol.
331 const char kSpdyServers[] = "spdy.servers";
332
330 // Disables the listed protocol schemes. 333 // Disables the listed protocol schemes.
331 const char kDisabledSchemes[] = "protocol.disabled_schemes"; 334 const char kDisabledSchemes[] = "protocol.disabled_schemes";
332 335
333 // Blocks access to the listed host patterns. 336 // Blocks access to the listed host patterns.
334 const char kUrlBlacklist[] = "policy.url_blacklist"; 337 const char kUrlBlacklist[] = "policy.url_blacklist";
335 338
336 // Allows access to the listed host patterns, as exceptions to the blacklist. 339 // Allows access to the listed host patterns, as exceptions to the blacklist.
337 const char kUrlWhitelist[] = "policy.url_whitelist"; 340 const char kUrlWhitelist[] = "policy.url_whitelist";
338 341
339 // Boolean pref indicating whether the instant confirm dialog has been shown. 342 // Boolean pref indicating whether the instant confirm dialog has been shown.
(...skipping 1241 matching lines...) Expand 10 before | Expand all | Expand 10 after
1581 // specified. 1584 // specified.
1582 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; 1585 const char kCustomHandlersEnabled[] = "custom_handlers.enabled";
1583 1586
1584 // Integers that specify the policy refresh rate for device- and user-policy in 1587 // Integers that specify the policy refresh rate for device- and user-policy in
1585 // milliseconds. Not all values are meaningful, so it is clamped to a sane range 1588 // milliseconds. Not all values are meaningful, so it is clamped to a sane range
1586 // by the cloud policy subsystem. 1589 // by the cloud policy subsystem.
1587 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; 1590 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate";
1588 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; 1591 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate";
1589 1592
1590 } // namespace prefs 1593 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome/test/base/testing_profile.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698