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

Unified Diff: Source/wtf/HashTable.h

Issue 1166623002: Oilpan: Remove a visitor parameter from isHeapObjectAlive (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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/DefaultAllocator.h ('k') | Source/wtf/Vector.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 1e29a606e0508565f3e92587272997452f9c2f65..4ff96014cf1d371edd70792beb761dd3dafdaa42 100644
--- a/Source/wtf/HashTable.h
+++ b/Source/wtf/HashTable.h
@@ -1289,7 +1289,7 @@ template<typename Key, typename Value, typename Extractor, typename HashFunction
// and/or weak callback then we are done. This optimization does not
// happen for ListHashSet since its iterator does not point at the
// backing.
- if (!m_table || visitor->isHeapObjectAlive(m_table))
+ if (!m_table || Allocator::isHeapObjectAlive(m_table))
return;
// Normally, we mark the backing store without performing trace. This
// means it is marked live, but the pointers inside it are not marked.
« no previous file with comments | « Source/wtf/DefaultAllocator.h ('k') | Source/wtf/Vector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698