| Index: third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzShaper.cpp
|
| diff --git a/third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzShaper.cpp b/third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzShaper.cpp
|
| index cc20e39748f7a21de3ee756784f0e81c4fb739c7..82d77dd14ac74d3b5cd34c0105860e824b5455ec 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzShaper.cpp
|
| +++ b/third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzShaper.cpp
|
| @@ -108,8 +108,8 @@ static inline hb_direction_t TextDirectionToHBDirection(
|
| !fontData->isTextOrientationFallback()
|
| ? HB_DIRECTION_TTB
|
| : HB_DIRECTION_LTR;
|
| - return dir == TextDirection::Rtl ? HB_DIRECTION_REVERSE(harfBuzzDirection)
|
| - : harfBuzzDirection;
|
| + return dir == TextDirection::kRtl ? HB_DIRECTION_REVERSE(harfBuzzDirection)
|
| + : harfBuzzDirection;
|
| }
|
|
|
| inline bool shapeRange(hb_buffer_t* harfBuzzBuffer,
|
|
|