Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2290)

Unified Diff: Source/wtf/HashTable.h

Issue 22887044: [oilpan] Make the oilpan branch build on Mac. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Add FIXME. Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/wtf/FastMalloc.h ('k') | Source/wtf/ValueCheck.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/HashTable.h
diff --git a/Source/wtf/HashTable.h b/Source/wtf/HashTable.h
index 42e818ea27dde11d0fb275575b5dffa08ade3c8c..8d1283b2850e6fac0c94383e9190300e32362105 100644
--- a/Source/wtf/HashTable.h
+++ b/Source/wtf/HashTable.h
@@ -133,7 +133,7 @@ namespace WTF {
, m_witness(witness)
#endif
{
- Allocator::template IteratorWitness<HashTableType>::verify(witness, table);
+ Allocator::template IteratorWitness<HashTableType>::verifyWitness(witness, table);
addIterator(table, this);
skipEmptyBuckets();
}
@@ -145,7 +145,7 @@ namespace WTF {
, m_witness(witness)
#endif
{
- Allocator::template IteratorWitness<HashTableType>::verify(witness, table);
+ Allocator::template IteratorWitness<HashTableType>::verifyWitness(witness, table);
addIterator(table, this);
}
@@ -236,7 +236,7 @@ namespace WTF {
{
#if CHECK_HASHTABLE_ITERATORS
ASSERT(m_table);
- Allocator::template IteratorWitness<HashTableType>::verify(m_witness, m_table);
+ Allocator::template IteratorWitness<HashTableType>::verifyWitness(m_witness, m_table);
#endif
}
@@ -245,7 +245,7 @@ namespace WTF {
void checkValidity(const const_iterator& other) const
{
ASSERT(m_table);
- Allocator::template IteratorWitness<HashTableType>::verify(m_witness, m_table);
+ Allocator::template IteratorWitness<HashTableType>::verifyWitness(m_witness, m_table);
ASSERT_UNUSED(other, other.m_table);
ASSERT(m_table == other.m_table);
}
@@ -1405,7 +1405,7 @@ namespace WTF {
ASSERT(!it->m_next);
ASSERT(!it->m_previous);
} else {
- Allocator::template IteratorWitness<HashTableType>::verify(it->m_witness, it->m_table);
+ Allocator::template IteratorWitness<HashTableType>::verifyWitness(it->m_witness, it->m_table);
MutexLocker lock(*it->m_table->m_mutex);
if (it->m_next) {
ASSERT(it->m_next->m_previous == it);
« no previous file with comments | « Source/wtf/FastMalloc.h ('k') | Source/wtf/ValueCheck.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698