| Index: chrome/browser/profiles/profile_impl_io_data.cc
|
| diff --git a/chrome/browser/profiles/profile_impl_io_data.cc b/chrome/browser/profiles/profile_impl_io_data.cc
|
| index 29806d4694791cabc142847974c1b0ac7b3b7da4..3d2aadbe1642c972f59f1a06de2b32ef757a21f7 100644
|
| --- a/chrome/browser/profiles/profile_impl_io_data.cc
|
| +++ b/chrome/browser/profiles/profile_impl_io_data.cc
|
| @@ -27,7 +27,6 @@
|
| #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h"
|
| #include "chrome/browser/io_thread.h"
|
| #include "chrome/browser/net/chrome_network_delegate.h"
|
| -#include "chrome/browser/net/connect_interceptor.h"
|
| #include "chrome/browser/net/http_server_properties_manager_factory.h"
|
| #include "chrome/browser/net/predictor.h"
|
| #include "chrome/browser/net/quota_policy_channel_id_store.h"
|
| @@ -447,8 +446,6 @@ void ProfileImplIOData::InitializeInternal(
|
| IOThread* const io_thread = profile_params->io_thread;
|
| IOThread::Globals* const io_thread_globals = io_thread->globals();
|
|
|
| - chrome_network_delegate->set_predictor(predictor_.get());
|
| -
|
| if (domain_reliability_monitor_) {
|
| domain_reliability::DomainReliabilityMonitor* monitor =
|
| domain_reliability_monitor_.get();
|
| @@ -784,6 +781,10 @@ ProfileImplIOData::AcquireIsolatedMediaRequestContext(
|
| return media_request_context;
|
| }
|
|
|
| +chrome_browser_net::Predictor* ProfileImplIOData::GetPredictor() {
|
| + return predictor_.get();
|
| +}
|
| +
|
| void ProfileImplIOData::ClearNetworkingHistorySinceOnIOThread(
|
| base::Time time,
|
| const base::Closure& completion) {
|
|
|