| 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
|
|
|