summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/http/infinite_cache.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http/infinite_cache.cc b/net/http/infinite_cache.cc
index 43759fc..e683509 100644
--- a/net/http/infinite_cache.cc
+++ b/net/http/infinite_cache.cc
@@ -967,7 +967,7 @@ bool InfiniteCache::Worker::CanReuse(const Details& old,
reason = REUSE_VARY;
bool have_to_drop = (old.flags & TRUNCATED) && !(old.flags & RESUMABLE);
- if (reason && (old.flags & REVALIDATEABLE) && !have_to_drop)
+ if (reason && (old.flags & (REVALIDATEABLE | RESUMABLE)) && !have_to_drop)
reason += REUSE_REVALIDATEABLE;
UMA_HISTOGRAM_ENUMERATION("InfiniteCache.ReuseFailure2", reason, 15);