| Index: ios/chrome/browser/browser_state/off_the_record_chrome_browser_state_impl.cc
|
| diff --git a/ios/chrome/browser/browser_state/off_the_record_chrome_browser_state_impl.cc b/ios/chrome/browser/browser_state/off_the_record_chrome_browser_state_impl.cc
|
| index a3ec449ef012a674cb4051ede75d6b8314cef9cd..e9e9dc5007ae7cb989ac5cbf2111b38392265d54 100644
|
| --- a/ios/chrome/browser/browser_state/off_the_record_chrome_browser_state_impl.cc
|
| +++ b/ios/chrome/browser/browser_state/off_the_record_chrome_browser_state_impl.cc
|
| @@ -6,12 +6,12 @@
|
|
|
| #include "base/logging.h"
|
| #include "components/keyed_service/ios/browser_state_dependency_manager.h"
|
| +#include "components/proxy_config/ios/proxy_service_factory.h"
|
| #include "components/proxy_config/pref_proxy_config_tracker.h"
|
| #include "components/sync_preferences/pref_service_syncable.h"
|
| #include "components/user_prefs/user_prefs.h"
|
| #include "ios/chrome/browser/application_context.h"
|
| #include "ios/chrome/browser/net/ios_chrome_url_request_context_getter.h"
|
| -#include "ios/chrome/browser/net/proxy_service_factory.h"
|
| #include "ios/web/public/web_thread.h"
|
|
|
| OffTheRecordChromeBrowserStateImpl::OffTheRecordChromeBrowserStateImpl(
|
| @@ -78,7 +78,7 @@ PrefProxyConfigTracker*
|
| OffTheRecordChromeBrowserStateImpl::GetProxyConfigTracker() {
|
| if (!pref_proxy_config_tracker_) {
|
| pref_proxy_config_tracker_ =
|
| - ios::ProxyServiceFactory::CreatePrefProxyConfigTrackerOfProfile(
|
| + ProxyServiceFactory::CreatePrefProxyConfigTrackerOfProfile(
|
| GetPrefs(), GetApplicationContext()->GetLocalState());
|
| }
|
| return pref_proxy_config_tracker_.get();
|
|
|