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

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

Issue 2518253002: Move Partition Allocator into Chromium base. (Closed)
Patch Set: Move OOM_CRASH into its own, more specific header. Fixes Windows build. Created 4 years 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 88ed08ce73c53ec9f01818f7d54bdfd61dc56081..a337a4ed32284fc4b231f4e74f524d9a010e78cf 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
@@ -144,7 +144,7 @@ void* LayoutObject::operator new(size_t sz) {
void LayoutObject::operator delete(void* ptr) {
ASSERT(isMainThread());
- partitionFree(ptr);
+ WTF::partitionFree(ptr);
}
LayoutObject* LayoutObject::createObject(Element* element,

Powered by Google App Engine
This is Rietveld 408576698