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

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: Consistently use key constants for dict fields and simplify validation error reporting Created 3 years, 11 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 4f89dadb752b7de12e198f40689a4efb60081eaf..2e563b56410f5931b7b8fd9177ed5b4ffb1ea900 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,33 @@ 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 kErrorKey[];
+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 kSubjectKey[];
+extern const char kIssuerKey[];
+extern const char kDNSNamesKey[];
+extern const char kIPAddressesKey[];
+extern const char kExpiredKey[];
+extern const char kNotBeforeKey[];
+extern const char kNotAfterKey[];
+extern const char kRawKey[];
+
// Events.
extern const char kOnAuthRequiredEvent[];
extern const char kOnBeforeRedirectEvent[];

Powered by Google App Engine
This is Rietveld 408576698