summaryrefslogtreecommitdiff
path: root/chromium/content/browser/indexed_db/list_set.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/browser/indexed_db/list_set.h')
-rw-r--r--chromium/content/browser/indexed_db/list_set.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/content/browser/indexed_db/list_set.h b/chromium/content/browser/indexed_db/list_set.h
index 1884b4bb925..e7945cae939 100644
--- a/chromium/content/browser/indexed_db/list_set.h
+++ b/chromium/content/browser/indexed_db/list_set.h
@@ -47,7 +47,7 @@ class list_set {
list_.erase(it);
}
- bool has(const T& elem) { return set_.find(elem) != set_.end(); }
+ bool has(const T& elem) const { return set_.find(elem) != set_.end(); }
size_t size() const {
DCHECK_EQ(list_.size(), set_.size());