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

Unified Diff: Source/wtf/PartitionAlloc.cpp

Issue 1320243003: Fix method name typo in PartitionAlloc. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/PartitionAlloc.cpp
diff --git a/Source/wtf/PartitionAlloc.cpp b/Source/wtf/PartitionAlloc.cpp
index f3e1ffb8adcedd4ecd8ac62aa2fbe12093f18d2f..d14559485d97aa50051843fc2c46b32762e0f7f5 100644
--- a/Source/wtf/PartitionAlloc.cpp
+++ b/Source/wtf/PartitionAlloc.cpp
@@ -98,7 +98,7 @@ static uint16_t partitionBucketNumSystemPages(size_t size)
return bestPages;
}
-static void parititonAllocBaseInit(PartitionRootBase* root)
+static void partitionAllocBaseInit(PartitionRootBase* root)
{
ASSERT(!root->initialized);
@@ -140,7 +140,7 @@ static void partitionBucketInitBase(PartitionBucket* bucket, PartitionRootBase*
void partitionAllocInit(PartitionRoot* root, size_t numBuckets, size_t maxAllocation)
{
- parititonAllocBaseInit(root);
+ partitionAllocBaseInit(root);
root->numBuckets = numBuckets;
root->maxAllocation = maxAllocation;
@@ -157,7 +157,7 @@ void partitionAllocInit(PartitionRoot* root, size_t numBuckets, size_t maxAlloca
void partitionAllocGenericInit(PartitionRootGeneric* root)
{
- parititonAllocBaseInit(root);
+ partitionAllocBaseInit(root);
root->lock = 0;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698