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

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

Issue 2518253002: Move Partition Allocator into Chromium base. (Closed)
Patch Set: Rebase and resolve conflict. 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 8a2ceafec70d524fec4f83601f7ab4216ebe48f3..dbe097df9ec7a3b86f81e536d98c819fb96e49ae 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayer.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
@@ -1246,7 +1246,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