summaryrefslogtreecommitdiffstats
path: root/chrome/browser/net
diff options
context:
space:
mode:
authorrvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-21 22:07:37 +0000
committerrvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-21 22:07:37 +0000
commit7bd394d220e29b212b9480cb8a7f4986cb8275ce (patch)
tree18342f9a8c2b2b840af8cea6ccf127902b0d1253 /chrome/browser/net
parent1db97ce76cad4c569c4ae79ad1422620ea5d97cf (diff)
downloadchromium_src-7bd394d220e29b212b9480cb8a7f4986cb8275ce.zip
chromium_src-7bd394d220e29b212b9480cb8a7f4986cb8275ce.tar.gz
chromium_src-7bd394d220e29b212b9480cb8a7f4986cb8275ce.tar.bz2
Revert cl 24015
BUG=none TEST=none Review URL: http://codereview.chromium.org/174260 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24026 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/net')
-rw-r--r--chrome/browser/net/chrome_url_request_context.cc14
1 files changed, 1 insertions, 13 deletions
diff --git a/chrome/browser/net/chrome_url_request_context.cc b/chrome/browser/net/chrome_url_request_context.cc
index da77fcf..5bb921b 100644
--- a/chrome/browser/net/chrome_url_request_context.cc
+++ b/chrome/browser/net/chrome_url_request_context.cc
@@ -125,9 +125,6 @@ ChromeURLRequestContext* ChromeURLRequestContext::CreateOriginal(
context->ssl_config_service_,
disk_cache_path.ToWStringHack(), cache_size);
- if (command_line.HasSwitch(switches::kEnableByteRangeSupport))
- cache->set_enable_range_support(true);
-
bool record_mode = chrome::kRecordModeEnabled &&
command_line.HasSwitch(switches::kRecordMode);
bool playback_mode = command_line.HasSwitch(switches::kPlaybackMode);
@@ -210,15 +207,10 @@ ChromeURLRequestContext* ChromeURLRequestContext::CreateOffTheRecord(
context->proxy_service_ =
profile->GetOriginalProfile()->GetRequestContext()->proxy_service();
- net::HttpCache* cache =
+ context->http_transaction_factory_ =
new net::HttpCache(context->host_resolver_, context->proxy_service_,
context->ssl_config_service_, 0);
context->cookie_store_ = new net::CookieMonster;
- context->http_transaction_factory_ = cache;
-
- if (CommandLine::ForCurrentProcess()->HasSwitch(
- switches::kEnableByteRangeSupport))
- cache->set_enable_range_support(true);
// The kWininetFtp switch is Windows specific because we have two FTP
// implementations on Windows.
@@ -287,10 +279,6 @@ ChromeURLRequestContext* ChromeURLRequestContext::CreateRequestContextForMedia(
disk_cache_path.ToWStringHack(), cache_size);
}
- if (CommandLine::ForCurrentProcess()->HasSwitch(
- switches::kEnableByteRangeSupport))
- cache->set_enable_range_support(true);
-
cache->set_type(net::MEDIA_CACHE);
context->http_transaction_factory_ = cache;
return context;