| Index: third_party/WebKit/Source/platform/fonts/shaping/RunSegmenter.cpp
|
| diff --git a/third_party/WebKit/Source/platform/fonts/shaping/RunSegmenter.cpp b/third_party/WebKit/Source/platform/fonts/shaping/RunSegmenter.cpp
|
| index 35e8af38c89dc9612fd0223035180c5c0a82bcde..08041134784c18761eaf387b5d716b1c0edccd84 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/shaping/RunSegmenter.cpp
|
| +++ b/third_party/WebKit/Source/platform/fonts/shaping/RunSegmenter.cpp
|
| @@ -21,13 +21,14 @@ RunSegmenter::RunSegmenter(const UChar* buffer,
|
| m_candidateRange({0, 0, USCRIPT_INVALID_CODE,
|
| OrientationIterator::OrientationKeep,
|
| FontFallbackPriority::Text}),
|
| - m_scriptRunIterator(makeUnique<ScriptRunIterator>(buffer, bufferSize)),
|
| + m_scriptRunIterator(
|
| + WTF::makeUnique<ScriptRunIterator>(buffer, bufferSize)),
|
| m_orientationIterator(
|
| runOrientation == FontOrientation::VerticalMixed
|
| - ? wrapUnique(
|
| + ? WTF::wrapUnique(
|
| new OrientationIterator(buffer, bufferSize, runOrientation))
|
| : nullptr),
|
| - m_symbolsIterator(makeUnique<SymbolsIterator>(buffer, bufferSize)),
|
| + m_symbolsIterator(WTF::makeUnique<SymbolsIterator>(buffer, bufferSize)),
|
| m_lastSplit(0),
|
| m_scriptRunIteratorPosition(0),
|
| m_orientationIteratorPosition(
|
|
|