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

Unified Diff: chrome/browser/ssl/ssl_cert_reporter.h

Issue 2543523002: Implement main CertificateReportingService code and add unit tests. (Closed)
Patch Set: jialiul comments Created 4 years 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
Index: chrome/browser/ssl/ssl_cert_reporter.h
diff --git a/chrome/browser/ssl/ssl_cert_reporter.h b/chrome/browser/ssl/ssl_cert_reporter.h
index 834ecec76530bd0ff4f0f40658a3cad77f3cd473..ad92a2e1b812f5bbb38ee7f82611cc907d246dfc 100644
--- a/chrome/browser/ssl/ssl_cert_reporter.h
+++ b/chrome/browser/ssl/ssl_cert_reporter.h
@@ -17,6 +17,9 @@ class SSLCertReporter {
// endpoint.
virtual void ReportInvalidCertificateChain(
const std::string& serialized_report) = 0;
+
+ // Called when a report send was abandoned.
+ virtual void OnDidNotSendReport() = 0;
estark 2016/12/01 01:46:54 It looks like this only has empty overrides, are y
meacer 2016/12/06 02:22:34 Removed.
};
#endif // CHROME_BROWSER_SSL_SSL_CERT_REPORTER_H_

Powered by Google App Engine
This is Rietveld 408576698