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

Unified Diff: Source/wtf/FastMalloc.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.cpp ('k') | Source/wtf/Partitions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/FastMalloc.cpp
diff --git a/Source/wtf/FastMalloc.cpp b/Source/wtf/FastMalloc.cpp
index 3bab74d3027153fbb7ef5d3b944155e2d66c8363..f2f0c2ee736534b905e43245c837363261fa34e2 100644
--- a/Source/wtf/FastMalloc.cpp
+++ b/Source/wtf/FastMalloc.cpp
@@ -53,17 +53,17 @@ char* fastStrDup(const char* src)
void* fastMalloc(size_t n)
{
- return partitionAllocGeneric(Partitions::getFastMallocPartition(), n);
+ return partitionAllocGeneric(Partitions::fastMallocPartition(), n);
}
void fastFree(void* p)
{
- partitionFreeGeneric(Partitions::getFastMallocPartition(), p);
+ partitionFreeGeneric(Partitions::fastMallocPartition(), p);
}
void* fastRealloc(void* p, size_t n)
{
- return partitionReallocGeneric(Partitions::getFastMallocPartition(), p, n);
+ return partitionReallocGeneric(Partitions::fastMallocPartition(), p, n);
}
} // namespace WTF
« no previous file with comments | « Source/wtf/DefaultAllocator.cpp ('k') | Source/wtf/Partitions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698