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

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: Use BoringSSL's SSL_CIPHER_get_rfc_name Created 4 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 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 4f89dadb752b7de12e198f40689a4efb60081eaf..5acdd2fce9700b7de042998da20c86c2a495e8d5 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,25 @@ 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 kCipherSuiteKey[];
+extern const char kErrorsKey[];
+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[];
+
// Events.
extern const char kOnAuthRequiredEvent[];
extern const char kOnBeforeRedirectEvent[];

Powered by Google App Engine
This is Rietveld 408576698