| 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 4a5958b849d5291598ad29c640e4a0dd249ccccc..0c3d6528e510a78e93a09031a2d5ab44a2d3943f 100644 | 
| --- a/chrome/browser/profiles/profile_impl_io_data.cc | 
| +++ b/chrome/browser/profiles/profile_impl_io_data.cc | 
| @@ -45,8 +45,8 @@ | 
| #include "net/url_request/url_request_job_factory_impl.h" | 
| #include "webkit/browser/quota/special_storage_policy.h" | 
|  | 
| -#if defined(OS_ANDROID) | 
| -#include "chrome/app/android/chrome_data_reduction_proxy_android.h" | 
| +#if defined(OS_ANDROID) || defined(OS_IOS) | 
| +#include "chrome/browser/net/spdyproxy/data_reduction_proxy_settings.h" | 
| #endif | 
|  | 
| namespace { | 
| @@ -432,8 +432,9 @@ void ProfileImplIOData::InitializeInternal( | 
| network_session_params, main_backend); | 
| main_cache->InitializeInfiniteCache(lazy_params_->infinite_cache_path); | 
|  | 
| -#if defined(OS_ANDROID) | 
| -  ChromeDataReductionProxyAndroid::Init(main_cache->GetSession()); | 
| +#if defined(OS_ANDROID) || defined(OS_IOS) | 
| +  DataReductionProxySettings::InitDataReductionProxySession( | 
| +      main_cache->GetSession()); | 
| #endif | 
|  | 
| if (record_mode || playback_mode) { | 
|  |