| Index: chrome/browser/ssl/chrome_expect_ct_reporter_unittest.cc
|
| diff --git a/chrome/browser/ssl/chrome_expect_ct_reporter_unittest.cc b/chrome/browser/ssl/chrome_expect_ct_reporter_unittest.cc
|
| index cc1561b054a40dec6442d031861345f001583d81..98e78ddecf39be40a2217c7f32d2896a62c3cc17 100644
|
| --- a/chrome/browser/ssl/chrome_expect_ct_reporter_unittest.cc
|
| +++ b/chrome/browser/ssl/chrome_expect_ct_reporter_unittest.cc
|
| @@ -19,7 +19,7 @@
|
| #include "net/ssl/signed_certificate_timestamp_and_status.h"
|
| #include "net/test/cert_test_util.h"
|
| #include "net/test/url_request/url_request_failed_job.h"
|
| -#include "net/url_request/certificate_report_sender.h"
|
| +#include "net/url_request/report_sender.h"
|
| #include "net/url_request/url_request_filter.h"
|
| #include "net/url_request/url_request_test_util.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -30,14 +30,12 @@ namespace {
|
| const char kSendHistogramName[] = "SSL.ExpectCTReportSendingAttempt";
|
| const char kFailureHistogramName[] = "SSL.ExpectCTReportFailure";
|
|
|
| -// A test CertificateReportSender that exposes the latest report URI and
|
| +// A test ReportSender that exposes the latest report URI and
|
| // serialized report to be sent.
|
| -class TestCertificateReportSender : public net::CertificateReportSender {
|
| +class TestCertificateReportSender : public net::ReportSender {
|
| public:
|
| TestCertificateReportSender()
|
| - : CertificateReportSender(
|
| - nullptr,
|
| - net::CertificateReportSender::DO_NOT_SEND_COOKIES) {}
|
| + : ReportSender(nullptr, net::ReportSender::DO_NOT_SEND_COOKIES) {}
|
| ~TestCertificateReportSender() override {}
|
|
|
| void Send(const GURL& report_uri,
|
|
|