| 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 3e6524fed2f4d74e2f6d7b56558db0b50383b06e..1b7979bb0a0aa3e79ca90d4d32c994962a770ea3 100644
|
| --- a/chrome/browser/profiles/profile_io_data.cc
|
| +++ b/chrome/browser/profiles/profile_io_data.cc
|
| @@ -118,6 +118,7 @@
|
| #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"
|
| +#include "chrome/browser/chromeos/net/client_cert_filter_chromeos.h"
|
| #include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h"
|
| #include "chrome/browser/chromeos/policy/policy_cert_service.h"
|
| #include "chrome/browser/chromeos/policy/policy_cert_service_factory.h"
|
| @@ -915,8 +916,8 @@ ProfileIOData::ResourceContext::CreateClientCertStore() {
|
| return io_data_->client_cert_store_factory_.Run();
|
| #if defined(OS_CHROMEOS)
|
| return scoped_ptr<net::ClientCertStore>(new net::ClientCertStoreChromeOS(
|
| - io_data_->use_system_key_slot(),
|
| - io_data_->username_hash(),
|
| + make_scoped_ptr(new chromeos::ClientCertFilterChromeOS(
|
| + io_data_->use_system_key_slot(), io_data_->username_hash())),
|
| base::Bind(&CreateCryptoModuleBlockingPasswordDelegate,
|
| chrome::kCryptoModulePasswordClientAuth)));
|
| #elif defined(USE_NSS)
|
|
|