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

Unified Diff: components/certificate_reporting/cert_logger.proto

Issue 2964283002: Add chrome channel to cert logger reports (Closed)
Patch Set: Fix build errors Created 3 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
« no previous file with comments | « components/certificate_reporting/DEPS ('k') | components/certificate_reporting/error_report.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/certificate_reporting/cert_logger.proto
diff --git a/components/certificate_reporting/cert_logger.proto b/components/certificate_reporting/cert_logger.proto
index 0d4b7601ca1d0c76b3aa146c99ddba632e2373eb..e28b3b9bb0372b62cb4f753b131a060443002bbb 100644
--- a/components/certificate_reporting/cert_logger.proto
+++ b/components/certificate_reporting/cert_logger.proto
@@ -148,4 +148,16 @@ message CertLoggerRequest {
// False when the report is attempted to be uploaded for the first time. True
// in all other uploads.
optional bool is_retry_upload = 11;
+
+ enum ChromeChannel {
+ CHROME_CHANNEL_NONE = 0;
+ CHROME_CHANNEL_UNKNOWN = 1;
+ CHROME_CHANNEL_DEV = 2;
+ CHROME_CHANNEL_CANARY = 3;
+ CHROME_CHANNEL_BETA = 4;
+ CHROME_CHANNEL_STABLE = 5;
+ };
+
+ // The Chrome channel that this error occurred on.
+ optional ChromeChannel chrome_channel = 12;
};
« no previous file with comments | « components/certificate_reporting/DEPS ('k') | components/certificate_reporting/error_report.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698