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 1342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1353 | 1353 |
1354 // Prefs for SSLConfigServicePref. | 1354 // Prefs for SSLConfigServicePref. |
1355 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | 1355 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; |
1356 const char kCertRevocationCheckingRequiredLocalAnchors[] = | 1356 const char kCertRevocationCheckingRequiredLocalAnchors[] = |
1357 "ssl.rev_checking.required_for_local_anchors"; | 1357 "ssl.rev_checking.required_for_local_anchors"; |
1358 const char kSSLVersionMin[] = "ssl.version_min"; | 1358 const char kSSLVersionMin[] = "ssl.version_min"; |
1359 const char kSSLVersionMax[] = "ssl.version_max"; | 1359 const char kSSLVersionMax[] = "ssl.version_max"; |
1360 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; | 1360 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; |
1361 const char kEnableOriginBoundCerts[] = "ssl.origin_bound_certs.enabled"; | 1361 const char kEnableOriginBoundCerts[] = "ssl.origin_bound_certs.enabled"; |
1362 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled"; | 1362 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled"; |
1363 const char kEnableUnrestrictedSSL3Fallback[] = | |
1364 "ssl.unrestricted_ssl3_fallback.enabled"; | |
1365 | 1363 |
1366 // A boolean pref of the EULA accepted flag. | 1364 // A boolean pref of the EULA accepted flag. |
1367 const char kEulaAccepted[] = "EulaAccepted"; | 1365 const char kEulaAccepted[] = "EulaAccepted"; |
1368 | 1366 |
1369 // The metrics client GUID, entropy source and session ID. | 1367 // The metrics client GUID, entropy source and session ID. |
1370 const char kMetricsClientID[] = "user_experience_metrics.client_id"; | 1368 const char kMetricsClientID[] = "user_experience_metrics.client_id"; |
1371 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; | 1369 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; |
1372 const char kMetricsLowEntropySource[] = | 1370 const char kMetricsLowEntropySource[] = |
1373 "user_experience_metrics.low_entropy_source"; | 1371 "user_experience_metrics.low_entropy_source"; |
1374 const char kMetricsPermutedEntropyCache[] = | 1372 const char kMetricsPermutedEntropyCache[] = |
(...skipping 1224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2599 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2597 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2600 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2598 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2601 // title or an empty string if the bookmark node was removed. | 2599 // title or an empty string if the bookmark node was removed. |
2602 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2600 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2603 #endif | 2601 #endif |
2604 | 2602 |
2605 // Whether DNS Quick Check is disabled in proxy resolution. | 2603 // Whether DNS Quick Check is disabled in proxy resolution. |
2606 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2604 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2607 | 2605 |
2608 } // namespace prefs | 2606 } // namespace prefs |
OLD | NEW |