| Index: chrome/browser/safe_browsing/certificate_reporting_service.h
|
| diff --git a/chrome/browser/safe_browsing/certificate_reporting_service.h b/chrome/browser/safe_browsing/certificate_reporting_service.h
|
| index 4f30f12f4816b9b66dcb5c44b91c96f3c3e056ce..5d02a23218fafbce8bf5e35cdde78208d5de9720 100644
|
| --- a/chrome/browser/safe_browsing/certificate_reporting_service.h
|
| +++ b/chrome/browser/safe_browsing/certificate_reporting_service.h
|
| @@ -60,12 +60,14 @@ class CertificateReportingService : public KeyedService {
|
| int report_id;
|
| base::Time creation_time;
|
| std::string serialized_report;
|
| + bool is_retried;
|
| Report(int report_id,
|
| base::Time creation_time,
|
| const std::string& serialized_report)
|
| : report_id(report_id),
|
| creation_time(creation_time),
|
| - serialized_report(serialized_report) {}
|
| + serialized_report(serialized_report),
|
| + is_retried(false) {}
|
| };
|
|
|
| // This class contains a number of reports, sorted by the first time the
|
|
|