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 a8f67ea8144871156e3bc8bcb7dd2687be1ab299..d71b94a5a61739e575c2561b17ed5cf29bad0701 100644 |
| --- a/chrome/browser/profiles/profile_io_data.cc |
| +++ b/chrome/browser/profiles/profile_io_data.cc |
| @@ -114,6 +114,7 @@ |
| #endif // defined(OS_ANDROID) |
| #if defined(OS_CHROMEOS) |
| +#include "chrome/browser/chromeos/certificate_provider/certificate_provider.h" |
|
mmenke
2015/08/22 17:21:54
If you're just passing in a NULL certificate provi
pneubeck (no reviews)
2015/08/23 19:31:31
The argument is a scoped_ptr<T>, that's why the fu
|
| #include "chrome/browser/chromeos/fileapi/external_file_protocol_handler.h" |
| #include "chrome/browser/chromeos/login/startup_utils.h" |
| #include "chrome/browser/chromeos/net/cert_verify_proc_chromeos.h" |
| @@ -940,6 +941,7 @@ ProfileIOData::ResourceContext::CreateClientCertStore() { |
| return io_data_->client_cert_store_factory_.Run(); |
| #if defined(OS_CHROMEOS) |
| return scoped_ptr<net::ClientCertStore>(new chromeos::ClientCertStoreChromeOS( |
| + nullptr, // no additional provider |
| make_scoped_ptr(new chromeos::ClientCertFilterChromeOS( |
| io_data_->use_system_key_slot(), io_data_->username_hash())), |
| base::Bind(&CreateCryptoModuleBlockingPasswordDelegate, |