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

Unified Diff: chrome/browser/safe_browsing/certificate_reporting_service.h

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 | « no previous file | chrome/browser/safe_browsing/certificate_reporting_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | chrome/browser/safe_browsing/certificate_reporting_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698