| 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 9a4234f032ce8911ddaef29533a85d2a31cc6c61..1f49bbb428821f7829caee03e0382ba17259bad4 100644
|
| --- a/chrome/browser/profiles/profile_io_data.cc
|
| +++ b/chrome/browser/profiles/profile_io_data.cc
|
| @@ -990,15 +990,11 @@ void ProfileIOData::Init(
|
| #if defined(OS_CHROMEOS)
|
| username_hash_ = profile_params_->username_hash;
|
| scoped_refptr<net::CertVerifyProc> verify_proc;
|
| - if (chromeos::UserManager::IsMultipleProfilesAllowed()) {
|
| - crypto::ScopedPK11Slot public_slot =
|
| - crypto::GetPublicSlotForChromeOSUser(username_hash_);
|
| - // The private slot won't be ready by this point. It shouldn't be necessary
|
| - // for cert trust purposes anyway.
|
| - verify_proc = new chromeos::CertVerifyProcChromeOS(public_slot.Pass());
|
| - } else {
|
| - verify_proc = net::CertVerifyProc::CreateDefault();
|
| - }
|
| + crypto::ScopedPK11Slot public_slot =
|
| + crypto::GetPublicSlotForChromeOSUser(username_hash_);
|
| + // The private slot won't be ready by this point. It shouldn't be necessary
|
| + // for cert trust purposes anyway.
|
| + verify_proc = new chromeos::CertVerifyProcChromeOS(public_slot.Pass());
|
| if (cert_verifier_) {
|
| cert_verifier_->InitializeOnIOThread(verify_proc);
|
| main_request_context_->set_cert_verifier(cert_verifier_.get());
|
|
|