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 88ea1699910113ac21128afd5cf48e0e2c33a132..e2ed2a3ef5ed84782616b3328231797f2a4ab0f7 100644 |
| --- a/chrome/browser/profiles/profile_io_data.cc |
| +++ b/chrome/browser/profiles/profile_io_data.cc |
| @@ -1043,11 +1043,14 @@ void ProfileIOData::Init( |
| command_line, |
| quick_check_enabled_.GetValue())); |
| transport_security_state_.reset(new net::TransportSecurityState()); |
| + auto* pool = BrowserThread::GetBlockingPool(); |
|
mmenke
2015/04/08 14:55:53
Think it's clearer just to write out the type here
hashimoto
2015/04/09 03:38:20
Done.
|
| transport_security_persister_.reset( |
| new net::TransportSecurityPersister( |
| transport_security_state_.get(), |
| profile_params_->path, |
| - BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE), |
| + pool->GetSequencedTaskRunnerWithShutdownBehavior( |
| + pool->GetSequenceToken(), |
| + base::SequencedWorkerPool::BLOCK_SHUTDOWN), |
| IsOffTheRecord())); |
| // Take ownership over these parameters. |