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

Unified Diff: third_party/WebKit/Source/core/paint/PaintLayer.cpp

Issue 2518253002: Move Partition Allocator into Chromium base. (Closed)
Patch Set: Respond to more of Primiano's comments; move PartitionAllocator.* back to wtf; some build fixes 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/paint/PaintLayer.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintLayer.cpp b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
index 732546f8d4907f780ca9d272f37c741b3f9649e8..9b376ae5332f14816ca5dc0701d2faf86c1c9db2 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayer.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
@@ -1230,7 +1230,7 @@ void* PaintLayer::operator new(size_t sz) {
}
void PaintLayer::operator delete(void* ptr) {
- partitionFree(ptr);
+ WTF::partitionFree(ptr);
}
void PaintLayer::addChild(PaintLayer* child, PaintLayer* beforeChild) {

Powered by Google App Engine
This is Rietveld 408576698