| Index: net/http/http_cache_transaction.cc
|
| ===================================================================
|
| --- net/http/http_cache_transaction.cc (revision 149069)
|
| +++ net/http/http_cache_transaction.cc (working copy)
|
| @@ -1770,6 +1770,9 @@
|
| if (effective_load_flags_ & LOAD_VALIDATE_CACHE)
|
| return true;
|
|
|
| + if (request_->method == "PUT" || request_->method == "DELETE")
|
| + return true;
|
| +
|
| if (response_.headers->RequiresValidation(
|
| response_.request_time, response_.response_time, Time::Now()))
|
| return true;
|
|
|