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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutObject.cpp

Issue 2614883006: Change PartitionAlloc to Chromium naming style. (Closed)
Patch Set: Rebase and fix some names. Created 3 years, 11 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
Index: third_party/WebKit/Source/core/layout/LayoutObject.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
index cb6243a70c4be2a80c74b56b66a3f09cb4635589..ca896f73f2f0d1ea771b0d2219404d2792f8f44f 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
@@ -139,13 +139,13 @@ bool LayoutObject::s_affectsParentBlock = false;
void* LayoutObject::operator new(size_t sz) {
ASSERT(isMainThread());
- return partitionAlloc(WTF::Partitions::layoutPartition(), sz,
+ return PartitionAlloc(WTF::Partitions::layoutPartition(), sz,
WTF_HEAP_PROFILER_TYPE_NAME(LayoutObject));
}
void LayoutObject::operator delete(void* ptr) {
ASSERT(isMainThread());
- WTF::partitionFree(ptr);
+ WTF::PartitionFree(ptr);
}
LayoutObject* LayoutObject::createObject(Element* element,

Powered by Google App Engine
This is Rietveld 408576698