Chromium Code Reviews| Index: chrome/browser/net/chrome_fraudulent_certificate_reporter.cc |
| =================================================================== |
| --- chrome/browser/net/chrome_fraudulent_certificate_reporter.cc (revision 186438) |
| +++ chrome/browser/net/chrome_fraudulent_certificate_reporter.cc (working copy) |
| @@ -65,14 +65,9 @@ |
| void ChromeFraudulentCertificateReporter::SendReport( |
| const std::string& hostname, |
| - const net::SSLInfo& ssl_info, |
| - bool sni_available) { |
| + const net::SSLInfo& ssl_info) { |
| // We do silent/automatic reporting ONLY for Google properties. For other |
| // domains (when we start supporting that), we will ask for user permission. |
|
palmer
2013/03/25 23:54:34
So what code now enforces this comment?
I think w
unsafe
2013/03/26 01:42:22
URLRequestHttpJob::OnStartCompleted().
|
| - if (!net::TransportSecurityState::IsGooglePinnedProperty(hostname, |
| - sni_available)) { |
| - return; |
| - } |
| std::string report = BuildReport(hostname, ssl_info); |