summaryrefslogtreecommitdiffstats
path: root/chrome/common/mru_cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/mru_cache.h')
-rw-r--r--chrome/common/mru_cache.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/common/mru_cache.h b/chrome/common/mru_cache.h
index 93f8059..cdad761 100644
--- a/chrome/common/mru_cache.h
+++ b/chrome/common/mru_cache.h
@@ -186,6 +186,8 @@ class MRUCacheBase {
reverse_iterator rend() { return ordering_.rend(); }
const_reverse_iterator rend() const { return ordering_.rend(); }
+ bool empty() const { return ordering_.empty(); }
+
private:
PayloadList ordering_;
KeyIndex index_;