diff options
author | bengr@chromium.org <bengr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-14 21:23:42 +0000 |
---|---|---|
committer | bengr@chromium.org <bengr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-14 21:23:42 +0000 |
commit | a0a0693ef2884bc152e27f9a2a26821b25ab599e (patch) | |
tree | e97ed75c491235b50da926b7ac5660868167e6a1 /chrome/browser/profiles/profile_impl_io_data.cc | |
parent | 596ca12542dea0f2db4c42afe28d52e515dfe578 (diff) | |
download | chromium_src-a0a0693ef2884bc152e27f9a2a26821b25ab599e.zip chromium_src-a0a0693ef2884bc152e27f9a2a26821b25ab599e.tar.gz chromium_src-a0a0693ef2884bc152e27f9a2a26821b25ab599e.tar.bz2 |
Moved data reduction proxy chrome code to component
Platform-inspecific code was moved from
chrome/browser/net/spdyproxy to components/data_reduction_proxy.
Names that include variations on SpdyProxyAuth have been changed to
DataReductionProxy.
Significant changes include: (1) InitChromeProxySettings now
takes |PrefService|s and a URLRequestContextGetter. (2)
All switches and prefs have been moved to
components/data_reduction_proxy/common.
(3) data_reduction_proxy_settings_unittest.[cc,h] was split into
itself and data_reduction_proxy_settings_test_util.[cc,h]. (4) proxy
configuration via prefs is embedded.
BUG=359340
Review URL: https://codereview.chromium.org/214343003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263728 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profiles/profile_impl_io_data.cc')
-rw-r--r-- | chrome/browser/profiles/profile_impl_io_data.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/profiles/profile_impl_io_data.cc b/chrome/browser/profiles/profile_impl_io_data.cc index 9af2b75..538604e 100644 --- a/chrome/browser/profiles/profile_impl_io_data.cc +++ b/chrome/browser/profiles/profile_impl_io_data.cc @@ -49,7 +49,7 @@ #include "webkit/browser/quota/special_storage_policy.h" #if defined(OS_ANDROID) || defined(OS_IOS) -#include "chrome/browser/net/spdyproxy/data_reduction_proxy_settings.h" +#include "components/data_reduction_proxy/browser/data_reduction_proxy_settings.h" #endif namespace { @@ -462,8 +462,8 @@ void ProfileImplIOData::InitializeInternal( main_cache->InitializeInfiniteCache(lazy_params_->infinite_cache_path); #if defined(OS_ANDROID) || defined(OS_IOS) - DataReductionProxySettings::InitDataReductionProxySession( - main_cache->GetSession()); + data_reduction_proxy::DataReductionProxySettings:: + InitDataReductionProxySession(main_cache->GetSession()); #endif if (chrome_browser_net::ShouldUseInMemoryCookiesAndCache()) { |