| Index: third_party/WebKit/Source/core/layout/line/InlineBox.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/line/InlineBox.cpp b/third_party/WebKit/Source/core/layout/line/InlineBox.cpp
|
| index 738cc4bbebb69aa9f13e0130b034d3bde33308fb..ba2aa2567ffc9bb39bca5002b846f0d7f777ad7a 100644
|
| --- a/third_party/WebKit/Source/core/layout/line/InlineBox.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/line/InlineBox.cpp
|
| @@ -80,12 +80,12 @@ void InlineBox::remove(MarkLineBoxes markLineBoxes) {
|
| }
|
|
|
| void* InlineBox::operator new(size_t sz) {
|
| - return partitionAlloc(WTF::Partitions::layoutPartition(), sz,
|
| + return PartitionAlloc(WTF::Partitions::layoutPartition(), sz,
|
| WTF_HEAP_PROFILER_TYPE_NAME(InlineBox));
|
| }
|
|
|
| void InlineBox::operator delete(void* ptr) {
|
| - WTF::partitionFree(ptr);
|
| + WTF::PartitionFree(ptr);
|
| }
|
|
|
| const char* InlineBox::boxName() const {
|
|
|