| Index: net/http/http_cache.cc
|
| ===================================================================
|
| --- net/http/http_cache.cc (revision 29212)
|
| +++ net/http/http_cache.cc (working copy)
|
| @@ -1598,7 +1598,7 @@
|
| host_resolver, proxy_service, ssl_config_service)),
|
| ALLOW_THIS_IN_INITIALIZER_LIST(task_factory_(this)),
|
| in_memory_cache_(false),
|
| - enable_range_support_(false),
|
| + enable_range_support_(true),
|
| cache_size_(cache_size) {
|
| }
|
|
|
| @@ -1611,7 +1611,7 @@
|
| network_layer_(HttpNetworkLayer::CreateFactory(session)),
|
| ALLOW_THIS_IN_INITIALIZER_LIST(task_factory_(this)),
|
| in_memory_cache_(false),
|
| - enable_range_support_(false),
|
| + enable_range_support_(true),
|
| cache_size_(cache_size) {
|
| }
|
|
|
| @@ -1625,7 +1625,7 @@
|
| host_resolver, proxy_service, ssl_config_service)),
|
| ALLOW_THIS_IN_INITIALIZER_LIST(task_factory_(this)),
|
| in_memory_cache_(true),
|
| - enable_range_support_(false),
|
| + enable_range_support_(true),
|
| cache_size_(cache_size) {
|
| }
|
|
|
| @@ -1637,7 +1637,7 @@
|
| disk_cache_(disk_cache),
|
| ALLOW_THIS_IN_INITIALIZER_LIST(task_factory_(this)),
|
| in_memory_cache_(false),
|
| - enable_range_support_(false),
|
| + enable_range_support_(true),
|
| cache_size_(0) {
|
| }
|
|
|
|
|