| Index: third_party/WebKit/Source/platform/fonts/shaping/CachingWordShapeIterator.cpp
|
| diff --git a/third_party/WebKit/Source/platform/fonts/shaping/CachingWordShapeIterator.cpp b/third_party/WebKit/Source/platform/fonts/shaping/CachingWordShapeIterator.cpp
|
| index 8029ff20aa19a81a6cb5eb52a5d7ef186acfd95f..80f506bd8c2af2a2cab59a57b309b3199c066441 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/shaping/CachingWordShapeIterator.cpp
|
| +++ b/third_party/WebKit/Source/platform/fonts/shaping/CachingWordShapeIterator.cpp
|
| @@ -15,8 +15,8 @@ PassRefPtr<const ShapeResult> CachingWordShapeIterator::shapeWordWithoutSpacing(
|
| if (cacheEntry && cacheEntry->m_shapeResult)
|
| return cacheEntry->m_shapeResult;
|
|
|
| - HarfBuzzShaper shaper(font, wordRun);
|
| - RefPtr<const ShapeResult> shapeResult = shaper.shapeResult();
|
| + HarfBuzzShaper shaper(wordRun);
|
| + RefPtr<const ShapeResult> shapeResult = shaper.shapeResult(font);
|
| if (!shapeResult)
|
| return nullptr;
|
|
|
|
|