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

Unified Diff: Source/platform/heap/Heap.cpp

Issue 808253004: Revert "Oilpan: Expand HashTableBacking buffer when possible" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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/Heap.h ('k') | Source/wtf/DefaultAllocator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/Heap.cpp
diff --git a/Source/platform/heap/Heap.cpp b/Source/platform/heap/Heap.cpp
index 88a330accfcc0407ba0f482da59ad1f95763c22d..63fac89ca370fda9697b4f33b16960f9813b0f9e 100644
--- a/Source/platform/heap/Heap.cpp
+++ b/Source/platform/heap/Heap.cpp
@@ -2718,14 +2718,6 @@ bool HeapAllocator::expandInlineVectorBacking(void* address, size_t newSize)
return backingExpand<HeapTraits, HeapTraits::HeapType, HeapTraits::HeaderType>(address, newSize);
}
-bool HeapAllocator::expandHashTableBacking(void* address, size_t newSize)
-{
- typedef HeapIndexTrait<HashTableBackingHeap> HeapTraits;
- typedef HeapTraits::HeapType HeapType;
- typedef HeapTraits::HeaderType HeaderType;
- return backingExpand<HeapTraits, HeapType, HeaderType>(address, newSize);
-}
-
template<typename HeapTraits>
void HeapAllocator::backingShrink(void* address, size_t quantizedCurrentSize, size_t quantizedShrunkSize)
{
« no previous file with comments | « Source/platform/heap/Heap.h ('k') | Source/wtf/DefaultAllocator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698