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

Unified Diff: Source/platform/heap/Handle.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/platform/heap/GarbageCollected.h ('k') | Source/platform/heap/Heap.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/Handle.h
diff --git a/Source/platform/heap/Handle.h b/Source/platform/heap/Handle.h
index b0821457146f85dc60f2e6e39c90523a7b36c295..28b9d5a4422d977fedbdeb7608eca5a37ee04220 100644
--- a/Source/platform/heap/Handle.h
+++ b/Source/platform/heap/Handle.h
@@ -1083,7 +1083,7 @@ template<typename T> struct HashTraits<blink::WeakMember<T>> : SimpleClassHashTr
visitor->trace(weakMember.get()); // Strongified visit.
return false;
}
- return !visitor->isHeapObjectAlive(weakMember);
+ return !blink::Heap::isHeapObjectAlive(weakMember);
}
};
« no previous file with comments | « Source/platform/heap/GarbageCollected.h ('k') | Source/platform/heap/Heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698