| Index: third_party/WebKit/Source/core/loader/resource/FontResource.cpp
|
| diff --git a/third_party/WebKit/Source/core/loader/resource/FontResource.cpp b/third_party/WebKit/Source/core/loader/resource/FontResource.cpp
|
| index c895500d32fe04790ccd6de50f84d5f390e6096a..8a32534edaf0012ef6f4adf963cf0028f2eadc79 100644
|
| --- a/third_party/WebKit/Source/core/loader/resource/FontResource.cpp
|
| +++ b/third_party/WebKit/Source/core/loader/resource/FontResource.cpp
|
| @@ -150,9 +150,11 @@ FontPlatformData FontResource::platformDataFromCustomData(
|
| float size,
|
| bool bold,
|
| bool italic,
|
| - FontOrientation orientation) {
|
| + FontOrientation orientation,
|
| + FontVariationSettings* fontVariationSettings) {
|
| DCHECK(m_fontData);
|
| - return m_fontData->fontPlatformData(size, bold, italic, orientation);
|
| + return m_fontData->fontPlatformData(size, bold, italic, orientation,
|
| + fontVariationSettings);
|
| }
|
|
|
| void FontResource::willReloadAfterDiskCacheMiss() {
|
|
|