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

Unified Diff: chrome/browser/net/cert_logger.proto

Issue 1076273002: Add interstitial info to certificate reports (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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: chrome/browser/net/cert_logger.proto
diff --git a/chrome/browser/net/cert_logger.proto b/chrome/browser/net/cert_logger.proto
index b42c5df7d5054c04d59d569322ddb5eacc0295b3..b238a8f6338974e69d52fc73a0220cf58f87e716 100644
--- a/chrome/browser/net/cert_logger.proto
+++ b/chrome/browser/net/cert_logger.proto
@@ -23,6 +23,14 @@ package chrome_browser_net;
option optimize_for = LITE_RUNTIME;
// Protocol types
+
+message InterstitialInfo {
+ optional uint32 validation_result = 1;
+ optional uint32 interstitial_reason = 2;
+ optional bool user_proceeded = 3;
+ optional bool overridable = 4;
+}
+
message CertLoggerRequest {
// The hostname being accessed (required as the cert could be valid for
// multiple hosts, e.g. a wildcard or a SubjectAltName.
@@ -39,6 +47,8 @@ message CertLoggerRequest {
// pin contains the string forms of the pins that were matched against for
// this host.
repeated string pin = 5;
+
+ optional InterstitialInfo interstitial_info = 6;
};
// The response sent back to the user.

Powered by Google App Engine
This is Rietveld 408576698