| 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 9508c6766973e378ad7091c575461713a3224c2b..c62616bd0c0a47313ab9ba769bb66a173c0228f5 100644
|
| --- a/ios/chrome/browser/ios_chrome_io_thread.mm
|
| +++ b/ios/chrome/browser/ios_chrome_io_thread.mm
|
| @@ -63,6 +63,7 @@
|
| #include "net/log/net_log_event_type.h"
|
| #include "net/nqe/external_estimate_provider.h"
|
| #include "net/nqe/network_quality_estimator.h"
|
| +#include "net/nqe/network_quality_estimator_params.h"
|
| #include "net/proxy/proxy_config_service.h"
|
| #include "net/proxy/proxy_script_fetcher_impl.h"
|
| #include "net/proxy/proxy_service.h"
|
| @@ -361,7 +362,9 @@ void IOSChromeIOThread::Init() {
|
| std::unique_ptr<net::ExternalEstimateProvider> external_estimate_provider;
|
| // Pass ownership.
|
| globals_->network_quality_estimator.reset(new net::NetworkQualityEstimator(
|
| - std::move(external_estimate_provider), network_quality_estimator_params,
|
| + std::move(external_estimate_provider),
|
| + base::MakeUnique<net::NetworkQualityEstimatorParams>(
|
| + network_quality_estimator_params),
|
| net_log_));
|
|
|
| globals_->cert_verifier = net::CertVerifier::CreateDefault();
|
|
|