| Index: chrome/browser/ssl/certificate_error_report.cc
|
| diff --git a/chrome/browser/ssl/certificate_error_report.cc b/chrome/browser/ssl/certificate_error_report.cc
|
| index 67e8edd64294440a7631389a2b31aab1015fbe97..c63e8975e78b43bc28185d3ebe3598d024d2726d 100644
|
| --- a/chrome/browser/ssl/certificate_error_report.cc
|
| +++ b/chrome/browser/ssl/certificate_error_report.cc
|
| @@ -56,7 +56,7 @@ bool CertificateChainToString(scoped_refptr<net::X509Certificate> cert,
|
| if (!cert->GetPEMEncodedChain(&pem_encoded_chain))
|
| return false;
|
|
|
| - *result = JoinString(pem_encoded_chain, std::string());
|
| + *result = base::JoinString(pem_encoded_chain, base::StringPiece());
|
| return true;
|
| }
|
|
|
|
|