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

Unified Diff: Source/wtf/Vector.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/HashTable.h ('k') | public/web/WebFrame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/Vector.h
diff --git a/Source/wtf/Vector.h b/Source/wtf/Vector.h
index ddf52d0da1139667546eb8401487778466d0ae9a..0c7e0adb37b668df4b602243618d95408ea8c97f 100644
--- a/Source/wtf/Vector.h
+++ b/Source/wtf/Vector.h
@@ -1321,7 +1321,7 @@ static const size_t kInitialVectorSize = WTF_VECTOR_INITIAL_SIZE;
// the conservative scanning traced an on-stack (false-positive
// or real) pointer to the HeapVector, and then visitor->trace()
// traces the HeapVector.
- if (visitor->isHeapObjectAlive(buffer()))
+ if (Allocator::isHeapObjectAlive(buffer()))
return;
Allocator::markNoTracing(visitor, buffer());
}
« no previous file with comments | « Source/wtf/HashTable.h ('k') | public/web/WebFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698