summaryrefslogtreecommitdiffstats
path: root/net/url_request/certificate_report_sender.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/url_request/certificate_report_sender.h')
-rw-r--r--net/url_request/certificate_report_sender.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/net/url_request/certificate_report_sender.h b/net/url_request/certificate_report_sender.h
index 9073836..dac8a57 100644
--- a/net/url_request/certificate_report_sender.h
+++ b/net/url_request/certificate_report_sender.h
@@ -34,17 +34,17 @@ class NET_EXPORT CertificateReportSender
// Constructs a CertificateReportSender that sends reports with the
// given |request_context| and includes or excludes cookies based on
- // |cookies_preference|. Ownership of |request_context| is not
- // transferred, so it must outlive the CertificateReportSender.
+ // |cookies_preference|. |request_context| must outlive the
+ // CertificateReportSender.
CertificateReportSender(URLRequestContext* request_context,
CookiesPreference cookies_preference);
~CertificateReportSender() override;
- // TransportSecurityState::ReportSender
+ // TransportSecurityState::ReportSender implementation.
void Send(const GURL& report_uri, const std::string& report) override;
- // net::URLRequest::Delegate
+ // net::URLRequest::Delegate implementation.
void OnResponseStarted(URLRequest* request) override;
void OnReadCompleted(URLRequest* request, int bytes_read) override;
@@ -58,9 +58,6 @@ class NET_EXPORT CertificateReportSender
net::URLRequestContext* context,
const GURL& report_uri);
- // Performs post-report cleanup.
- void RequestComplete(net::URLRequest* request);
-
net::URLRequestContext* const request_context_;
CookiesPreference cookies_preference_;