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

Unified Diff: Source/wtf/DefaultAllocator.h

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/BitVector.cpp ('k') | Source/wtf/DefaultAllocator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/DefaultAllocator.h
diff --git a/Source/wtf/DefaultAllocator.h b/Source/wtf/DefaultAllocator.h
index 3e28b15625c331775fcade23ea20491da7057dfb..76226866d6786af17c4d843012a49e291034c6e8 100644
--- a/Source/wtf/DefaultAllocator.h
+++ b/Source/wtf/DefaultAllocator.h
@@ -52,7 +52,7 @@ public:
static size_t quantizedSize(size_t count)
{
RELEASE_ASSERT(count <= kMaxUnquantizedAllocation / sizeof(T));
- return partitionAllocActualSize(Partitions::getBufferPartition(), count * sizeof(T));
+ return partitionAllocActualSize(Partitions::bufferPartition(), count * sizeof(T));
}
static const size_t kMaxUnquantizedAllocation = kGenericMaxDirectMapped;
};
« no previous file with comments | « Source/wtf/BitVector.cpp ('k') | Source/wtf/DefaultAllocator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698