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

Unified Diff: extensions/browser/api/web_request/web_request_api_constants.h

Issue 2156763003: Extend the webRequest.onCompleted event details object with TLS/SSL information Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove questionably useful fields & add feature switch Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: extensions/browser/api/web_request/web_request_api_constants.h
diff --git a/extensions/browser/api/web_request/web_request_api_constants.h b/extensions/browser/api/web_request/web_request_api_constants.h
index ce51d066cc2f5b3bc7415adf8f1607da2dc993cb..c7792b7b3cf91ac106ff17d3d84d392fa50e440c 100644
--- a/extensions/browser/api/web_request/web_request_api_constants.h
+++ b/extensions/browser/api/web_request/web_request_api_constants.h
@@ -51,6 +51,37 @@ extern const char kAuthCredentialsKey[];
extern const char kUsernameKey[];
extern const char kPasswordKey[];
+extern const char kSSLInfoKey[];
+extern const char kCertificateValidKey[];
+extern const char kCertificateIssuedByKnownRootKey[];
+extern const char kEVCertificateKey[];
+extern const char kBuiltChainKey[];
+extern const char kSentChainKey[];
+extern const char kSSLVersionKey[];
+extern const char kCipherNameKey[];
+extern const char kKeyExchangeNameKey[];
+extern const char kAEDSuiteKey[];
+extern const char kMACNameKey[];
+extern const char kDeflateCompressionKey[];
+extern const char kVersionFallbackKey[];
+extern const char kNoRenegotiationExtensionKey[];
+extern const char kRevocationCheckingEnabledKey[];
+extern const char kErrorsKey[];
+extern const char kNonUniqueNameKey[];
+extern const char kSHA1SignaturePresentKey[];
+extern const char kCTComplianceFailedKey[];
+extern const char kCommonNameKey[];
+extern const char kLocalityNameKey[];
+extern const char kStateOrProvinceNameKey[];
+extern const char kCountryNameKey[];
+extern const char kStreetAddressesKey[];
+extern const char kOrganizationNamesKey[];
+extern const char kOrganizationUnitNamesKey[];
+extern const char kSerialNumberKey[];
+extern const char kChainKey[];
+extern const char kDomainComponentsKey[];
+extern const char kConnectionInfoKey[];
+
// Events.
extern const char kOnAuthRequiredEvent[];
extern const char kOnBeforeRedirectEvent[];

Powered by Google App Engine
This is Rietveld 408576698