Index: ios/chrome/browser/browser_state/chrome_browser_state_impl.cc |
diff --git a/ios/chrome/browser/browser_state/chrome_browser_state_impl.cc b/ios/chrome/browser/browser_state/chrome_browser_state_impl.cc |
index 2a243ae3c6ae5ad9acb4781ad7add4886b635fa1..4a2568da4c89f95acb9d4851f28afa3ac907c0b8 100644 |
--- a/ios/chrome/browser/browser_state/chrome_browser_state_impl.cc |
+++ b/ios/chrome/browser/browser_state/chrome_browser_state_impl.cc |
@@ -15,6 +15,7 @@ |
#include "components/pref_registry/pref_registry_syncable.h" |
#include "components/prefs/json_pref_store.h" |
#include "components/prefs/pref_service.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" |
@@ -26,7 +27,6 @@ |
#include "ios/chrome/browser/chrome_paths_internal.h" |
#include "ios/chrome/browser/file_metadata_util.h" |
#include "ios/chrome/browser/net/ios_chrome_url_request_context_getter.h" |
-#include "ios/chrome/browser/net/proxy_service_factory.h" |
#include "ios/chrome/browser/pref_names.h" |
#include "ios/chrome/browser/prefs/browser_prefs.h" |
#include "ios/chrome/browser/prefs/ios_chrome_pref_service_factory.h" |
@@ -243,7 +243,7 @@ void ChromeBrowserStateImpl::ClearNetworkingHistorySince( |
PrefProxyConfigTracker* ChromeBrowserStateImpl::GetProxyConfigTracker() { |
if (!pref_proxy_config_tracker_) { |
pref_proxy_config_tracker_ = |
- ios::ProxyServiceFactory::CreatePrefProxyConfigTrackerOfProfile( |
+ ProxyServiceFactory::CreatePrefProxyConfigTrackerOfProfile( |
GetPrefs(), GetApplicationContext()->GetLocalState()); |
} |
return pref_proxy_config_tracker_.get(); |