| Index: chrome/browser/net/chrome_fraudulent_certificate_reporter.cc
|
| diff --git a/chrome/browser/net/chrome_fraudulent_certificate_reporter.cc b/chrome/browser/net/chrome_fraudulent_certificate_reporter.cc
|
| index f666c8715c950dadc9dabb1c462bf88dcfbbae48..5aef283f4be9c91b0ca2046fee21c8c10e41cc53 100644
|
| --- a/chrome/browser/net/chrome_fraudulent_certificate_reporter.cc
|
| +++ b/chrome/browser/net/chrome_fraudulent_certificate_reporter.cc
|
| @@ -70,12 +70,10 @@ ChromeFraudulentCertificateReporter::CreateURLRequest(
|
|
|
| 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.
|
| - if (!net::TransportSecurityState::IsGooglePinnedProperty(hostname,
|
| - sni_available)) {
|
| + if (!net::TransportSecurityState::IsGooglePinnedProperty(hostname)) {
|
| return;
|
| }
|
|
|
|
|