| Index: chrome/browser/net/certificate_error_reporter.cc
|
| diff --git a/chrome/browser/net/certificate_error_reporter.cc b/chrome/browser/net/certificate_error_reporter.cc
|
| index 57e737fce6d530e8c87fdbab7736527ab0d8a418..d3359629a56f8bd6a04eb152601e8efa230b3e4b 100644
|
| --- a/chrome/browser/net/certificate_error_reporter.cc
|
| +++ b/chrome/browser/net/certificate_error_reporter.cc
|
| @@ -20,6 +20,10 @@
|
|
|
| namespace chrome_browser_net {
|
|
|
| +// URL to upload invalid certificate chain reports
|
| +// TODO(estark): Fill this in with the real URL when live.
|
| +const char kExtendedReportingUploadUrl[] = "http://example.test";
|
| +
|
| CertificateErrorReporter::CertificateErrorReporter(
|
| net::URLRequestContext* request_context,
|
| const GURL& upload_url)
|
| @@ -47,8 +51,7 @@ void CertificateErrorReporter::SendReport(ReportType type,
|
| // TODO(estark): Double-check that the user is opted in.
|
| // TODO(estark): Temporarily, since this is no upload endpoint, just
|
| // log the information.
|
| - request.SerializeToString(&out);
|
| - DVLOG(3) << "SSL report for " << hostname << ":\n" << out << "\n\n";
|
| + DVLOG(1) << "Would send certificate report for " << hostname;
|
| break;
|
| default:
|
| NOTREACHED();
|
|
|