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

Unified Diff: Source/wtf/BitVector.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/ArrayBufferContents.cpp ('k') | Source/wtf/DefaultAllocator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/BitVector.cpp
diff --git a/Source/wtf/BitVector.cpp b/Source/wtf/BitVector.cpp
index 8ac13f6afec3f0f62212076d3b5672647d0f95c4..7c25735e91370a7d93c5a785e667bad8da0ca8bb 100644
--- a/Source/wtf/BitVector.cpp
+++ b/Source/wtf/BitVector.cpp
@@ -80,14 +80,14 @@ BitVector::OutOfLineBits* BitVector::OutOfLineBits::create(size_t numBits)
WTF_ANNOTATE_SCOPED_MEMORY_LEAK;
numBits = (numBits + bitsInPointer() - 1) & ~(bitsInPointer() - 1);
size_t size = sizeof(OutOfLineBits) + sizeof(uintptr_t) * (numBits / bitsInPointer());
- void* allocation = partitionAllocGeneric(Partitions::getBufferPartition(), size);
+ void* allocation = partitionAllocGeneric(Partitions::bufferPartition(), size);
OutOfLineBits* result = new (NotNull, allocation) OutOfLineBits(numBits);
return result;
}
void BitVector::OutOfLineBits::destroy(OutOfLineBits* outOfLineBits)
{
- partitionFreeGeneric(Partitions::getBufferPartition(), outOfLineBits);
+ partitionFreeGeneric(Partitions::bufferPartition(), outOfLineBits);
}
void BitVector::resizeOutOfLine(size_t numBits)
« no previous file with comments | « Source/wtf/ArrayBufferContents.cpp ('k') | Source/wtf/DefaultAllocator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698