| Index: ios/chrome/browser/ios_chrome_io_thread.mm
|
| diff --git a/ios/chrome/browser/ios_chrome_io_thread.mm b/ios/chrome/browser/ios_chrome_io_thread.mm
|
| index 85c3bed7729596bcfd6ac1c3fb609eda27ea4485..97721b6b18a25ecc57dcc5af14e6a8944f02c4ac 100644
|
| --- a/ios/chrome/browser/ios_chrome_io_thread.mm
|
| +++ b/ios/chrome/browser/ios_chrome_io_thread.mm
|
| @@ -359,7 +359,7 @@ void IOSChromeIOThread::Init() {
|
| // Add built-in logs
|
| ct_verifier->AddLogs(ct_logs);
|
|
|
| - params_.ct_policy_enforcer = new net::CTPolicyEnforcer;
|
| + globals_->ct_policy_enforcer.reset(new net::CTPolicyEnforcer());
|
|
|
| globals_->ssl_config_service = GetSSLConfigService();
|
|
|
| @@ -530,6 +530,7 @@ net::URLRequestContext* IOSChromeIOThread::ConstructSystemRequestContext(
|
| context->set_http_auth_handler_factory(
|
| globals->http_auth_handler_factory.get());
|
| context->set_proxy_service(globals->system_proxy_service.get());
|
| + context->set_ct_policy_enforcer(globals->ct_policy_enforcer.get());
|
|
|
| net::URLRequestJobFactoryImpl* system_job_factory =
|
| new net::URLRequestJobFactoryImpl();
|
|
|