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

Unified Diff: components/certificate_reporting/error_report.cc

Issue 2632533002: Add retry information to certificate reports. (Closed)
Patch Set: Enums 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
« no previous file with comments | « components/certificate_reporting/error_report.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/certificate_reporting/error_report.cc
diff --git a/components/certificate_reporting/error_report.cc b/components/certificate_reporting/error_report.cc
index fac5e4bfdf02fc662b80a9b02a72898a18a438c9..86d345f4cc0f5014991175bebaa111a3fc1eb657 100644
--- a/components/certificate_reporting/error_report.cc
+++ b/components/certificate_reporting/error_report.cc
@@ -160,8 +160,16 @@ void ErrorReport::AddNetworkTimeInfo(
network_time_info->set_network_time_query_behavior(report_behavior);
}
+void ErrorReport::SetIsRetryUpload(bool is_retry_upload) {
+ cert_report_->set_is_retry_upload(is_retry_upload);
+}
+
const std::string& ErrorReport::hostname() const {
return cert_report_->hostname();
}
+bool ErrorReport::is_retry_upload() const {
+ return cert_report_->is_retry_upload();
+}
+
} // namespace certificate_reporting
« no previous file with comments | « components/certificate_reporting/error_report.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698