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

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

Issue 1351063002: Oilpan: Remove 'inline' from Heap::allocateOnHeapIndex Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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 | « no previous file | Source/platform/heap/Heap.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/Heap.h
diff --git a/Source/platform/heap/Heap.h b/Source/platform/heap/Heap.h
index d3b4b4d9519c3b7f1e35ff32a2b34ec79e72dec7..60edb880cf4ceee0517c5a735bece33f1af79e09 100644
--- a/Source/platform/heap/Heap.h
+++ b/Source/platform/heap/Heap.h
@@ -457,6 +457,7 @@ public: \
#define EAGERLY_FINALIZE_WILL_BE_REMOVED()
#endif
+/*
inline Address Heap::allocateOnHeapIndex(ThreadState* state, size_t size, int heapIndex, size_t gcInfoIndex)
{
ASSERT(state->isAllocationAllowed());
@@ -464,6 +465,7 @@ inline Address Heap::allocateOnHeapIndex(ThreadState* state, size_t size, int he
NormalPageHeap* heap = static_cast<NormalPageHeap*>(state->heap(heapIndex));
return heap->allocateObject(allocationSizeFromSize(size), gcInfoIndex);
}
+*/
template<typename T>
Address Heap::allocate(size_t size, bool eagerlySweep)
« no previous file with comments | « no previous file | Source/platform/heap/Heap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698