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

Unified Diff: Source/core/layout/line/InlineBox.cpp

Issue 1041103002: PartitionAlloc: Centralize Partition allocators into one place (Part 1) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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 | « Source/core/layout/PaintInvalidationState.cpp ('k') | Source/core/paint/DeprecatedPaintLayer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/line/InlineBox.cpp
diff --git a/Source/core/layout/line/InlineBox.cpp b/Source/core/layout/line/InlineBox.cpp
index 2c5645149bf417d7272422c220910cc7d9b2b10e..277483259a822249179e3b2e8be0e605cb6c12b5 100644
--- a/Source/core/layout/line/InlineBox.cpp
+++ b/Source/core/layout/line/InlineBox.cpp
@@ -27,8 +27,8 @@
#include "core/layout/line/InlineFlowBox.h"
#include "core/layout/line/RootInlineBox.h"
#include "core/paint/BlockPainter.h"
-#include "platform/Partitions.h"
#include "platform/fonts/FontMetrics.h"
+#include "wtf/Partitions.h"
#ifndef NDEBUG
#include <stdio.h>
@@ -73,7 +73,7 @@ void InlineBox::remove(MarkLineBoxes markLineBoxes)
void* InlineBox::operator new(size_t sz)
{
- return partitionAlloc(Partitions::getRenderingPartition(), sz);
+ return partitionAlloc(WTF::Partitions::getRenderingPartition(), sz);
}
void InlineBox::operator delete(void* ptr)
« no previous file with comments | « Source/core/layout/PaintInvalidationState.cpp ('k') | Source/core/paint/DeprecatedPaintLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698