Chromium Code Reviews| Index: chrome/browser/profiles/profile_io_data.cc |
| diff --git a/chrome/browser/profiles/profile_io_data.cc b/chrome/browser/profiles/profile_io_data.cc |
| index b8db2b3dba581c82a5f3ca06bfe3b16911fee276..3588eba3e5e653b29c2395b3f13c191931bc296b 100644 |
| --- a/chrome/browser/profiles/profile_io_data.cc |
| +++ b/chrome/browser/profiles/profile_io_data.cc |
| @@ -135,6 +135,7 @@ |
| #include "crypto/nss_util_internal.h" |
| #include "net/cert/cert_verifier.h" |
| #include "net/cert/multi_threaded_cert_verifier.h" |
| +#include "net/cert/x509_certificate.h" |
| #include "net/ssl/client_cert_store_chromeos.h" |
| #endif // defined(OS_CHROMEOS) |
| @@ -941,6 +942,7 @@ ProfileIOData::ResourceContext::CreateClientCertStore() { |
| return io_data_->client_cert_store_factory_.Run(); |
| #if defined(OS_CHROMEOS) |
| return scoped_ptr<net::ClientCertStore>(new net::ClientCertStoreChromeOS( |
| + net::CertificateList(), // no additional certificates |
|
davidben
2015/08/10 21:54:00
Nit: I think this is two spaces?
pneubeck (no reviews)
2015/08/13 12:25:25
Done.
|
| make_scoped_ptr(new chromeos::ClientCertFilterChromeOS( |
| io_data_->use_system_key_slot(), io_data_->username_hash())), |
| base::Bind(&CreateCryptoModuleBlockingPasswordDelegate, |