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

Unified Diff: Source/wtf/DefaultAllocator.cpp

Issue 1189593003: Rename Partitions::getRenderingPartition() -> getLayoutPartition() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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/FastMalloc.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/DefaultAllocator.cpp
diff --git a/Source/wtf/DefaultAllocator.cpp b/Source/wtf/DefaultAllocator.cpp
index 785173c62be92798858d14d41ee90894f6e3870b..cc769c8a0328b1579128fab1549579e5b0180304 100644
--- a/Source/wtf/DefaultAllocator.cpp
+++ b/Source/wtf/DefaultAllocator.cpp
@@ -37,17 +37,17 @@ namespace WTF {
void* DefaultAllocator::allocateBacking(size_t size)
{
- return partitionAllocGeneric(Partitions::getBufferPartition(), size);
+ return partitionAllocGeneric(Partitions::bufferPartition(), size);
}
void DefaultAllocator::freeVectorBacking(void* address)
{
- partitionFreeGeneric(Partitions::getBufferPartition(), address);
+ partitionFreeGeneric(Partitions::bufferPartition(), address);
}
void DefaultAllocator::freeHashTableBacking(void* address)
{
- partitionFreeGeneric(Partitions::getBufferPartition(), address);
+ partitionFreeGeneric(Partitions::bufferPartition(), address);
}
} // namespace WTF
« no previous file with comments | « Source/wtf/DefaultAllocator.h ('k') | Source/wtf/FastMalloc.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698