| Index: net/http/http_cache_transaction.cc
|
| ===================================================================
|
| --- net/http/http_cache_transaction.cc (revision 33919)
|
| +++ net/http/http_cache_transaction.cc (working copy)
|
| @@ -912,7 +912,9 @@
|
| }
|
| custom_request_->extra_headers.append(etag_value);
|
| custom_request_->extra_headers.append("\r\n");
|
| - if (partial_.get() && partial_->IsCurrentRangeCached())
|
| + // For byte-range requests, make sure that we use only one way to validate
|
| + // the request.
|
| + if (partial_.get())
|
| return true;
|
| }
|
|
|
|
|