| Index: third_party/WebKit/Source/platform/fonts/FontPlatformData.cpp
|
| diff --git a/third_party/WebKit/Source/platform/fonts/FontPlatformData.cpp b/third_party/WebKit/Source/platform/fonts/FontPlatformData.cpp
|
| index 04b7fe6d0388a6592ef9c420410a7972f593d90b..2a461c6a8a234269bb882e81228bc491a6dc8956 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/FontPlatformData.cpp
|
| +++ b/third_party/WebKit/Source/platform/fonts/FontPlatformData.cpp
|
| @@ -267,10 +267,10 @@ bool FontPlatformData::hasSpaceInLigaturesOrKerning(
|
| if (!hbFace)
|
| return false;
|
|
|
| - hb_face_t* face = hbFace->face();
|
| - ASSERT(face);
|
| hb_font_t* font = hbFace->getScaledFont();
|
| ASSERT(font);
|
| + hb_face_t* face = hb_font_get_face(font);
|
| + ASSERT(face);
|
|
|
| hb_codepoint_t space;
|
| // If the space glyph isn't present in the font then each space character
|
|
|