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

Unified Diff: third_party/WebKit/Source/platform/fonts/shaping/RunSegmenter.cpp

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... 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/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(

Powered by Google App Engine
This is Rietveld 408576698