| Index: third_party/WebKit/Source/platform/text/BidiCharacterRun.cpp
|
| diff --git a/third_party/WebKit/Source/platform/text/BidiCharacterRun.cpp b/third_party/WebKit/Source/platform/text/BidiCharacterRun.cpp
|
| index 3013485f23ca3df24a55d7ef95c519441ad2aeb5..48073c06c12a2ccfe4caf4ac458ead47e415f994 100644
|
| --- a/third_party/WebKit/Source/platform/text/BidiCharacterRun.cpp
|
| +++ b/third_party/WebKit/Source/platform/text/BidiCharacterRun.cpp
|
| @@ -25,16 +25,14 @@
|
|
|
| #include "platform/wtf/allocator/Partitions.h"
|
|
|
| -using namespace WTF;
|
| -
|
| namespace blink {
|
| void* BidiCharacterRun::operator new(size_t sz) {
|
| - return PartitionAlloc(Partitions::LayoutPartition(), sz,
|
| + return PartitionAlloc(WTF::Partitions::LayoutPartition(), sz,
|
| WTF_HEAP_PROFILER_TYPE_NAME(BidiCharacterRun));
|
| }
|
|
|
| void BidiCharacterRun::operator delete(void* ptr) {
|
| - PartitionFree(ptr);
|
| + WTF::PartitionFree(ptr);
|
| }
|
|
|
| } // namespace blink
|
|
|