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

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

Issue 83333003: Add support for fetching Certificate Transparency SCTs over a TLS extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update tlslite patch Created 7 years 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/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 1290 matching lines...) Expand 10 before | Expand all | Expand 10 after
1301 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; 1301 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled";
1302 const char kCertRevocationCheckingRequiredLocalAnchors[] = 1302 const char kCertRevocationCheckingRequiredLocalAnchors[] =
1303 "ssl.rev_checking.required_for_local_anchors"; 1303 "ssl.rev_checking.required_for_local_anchors";
1304 const char kSSLVersionMin[] = "ssl.version_min"; 1304 const char kSSLVersionMin[] = "ssl.version_min";
1305 const char kSSLVersionMax[] = "ssl.version_max"; 1305 const char kSSLVersionMax[] = "ssl.version_max";
1306 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist"; 1306 const char kCipherSuiteBlacklist[] = "ssl.cipher_suites.blacklist";
1307 const char kEnableOriginBoundCerts[] = "ssl.origin_bound_certs.enabled"; 1307 const char kEnableOriginBoundCerts[] = "ssl.origin_bound_certs.enabled";
1308 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled"; 1308 const char kDisableSSLRecordSplitting[] = "ssl.ssl_record_splitting.disabled";
1309 const char kEnableUnrestrictedSSL3Fallback[] = 1309 const char kEnableUnrestrictedSSL3Fallback[] =
1310 "ssl.unrestricted_ssl3_fallback.enabled"; 1310 "ssl.unrestricted_ssl3_fallback.enabled";
1311 const char kEnableSignedCertTimestamps[] = "ssl.signed_cert_timestamps.enabled";
1311 1312
1312 // A boolean pref of the EULA accepted flag. 1313 // A boolean pref of the EULA accepted flag.
1313 const char kEulaAccepted[] = "EulaAccepted"; 1314 const char kEulaAccepted[] = "EulaAccepted";
1314 1315
1315 // The metrics client GUID, entropy source and session ID. 1316 // The metrics client GUID, entropy source and session ID.
1316 const char kMetricsClientID[] = "user_experience_metrics.client_id"; 1317 const char kMetricsClientID[] = "user_experience_metrics.client_id";
1317 const char kMetricsSessionID[] = "user_experience_metrics.session_id"; 1318 const char kMetricsSessionID[] = "user_experience_metrics.session_id";
1318 const char kMetricsLowEntropySource[] = 1319 const char kMetricsLowEntropySource[] =
1319 "user_experience_metrics.low_entropy_source"; 1320 "user_experience_metrics.low_entropy_source";
1320 const char kMetricsPermutedEntropyCache[] = 1321 const char kMetricsPermutedEntropyCache[] =
(...skipping 1290 matching lines...) Expand 10 before | Expand all | Expand 10 after
2611 #if defined(OS_ANDROID) 2612 #if defined(OS_ANDROID)
2612 // A list of partner bookmark rename/remove mappings. 2613 // A list of partner bookmark rename/remove mappings.
2613 // Each list item is a dictionary containing a "url", a "provider_title" and 2614 // Each list item is a dictionary containing a "url", a "provider_title" and
2614 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2615 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2615 // given by the PartnerBookmarksProvider and either the user-visible renamed 2616 // given by the PartnerBookmarksProvider and either the user-visible renamed
2616 // title or an empty string if the bookmark node was removed. 2617 // title or an empty string if the bookmark node was removed.
2617 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2618 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2618 #endif 2619 #endif
2619 2620
2620 } // namespace prefs 2621 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698