Chromium Code Reviews| Index: Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp |
| diff --git a/Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp b/Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp |
| index b2cc9d20f4f83c29f3348055547a9aeb662be7ea..c811852b643bf3c16394792ce292170c417b621c 100644 |
| --- a/Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp |
| +++ b/Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp |
| @@ -517,6 +517,24 @@ void HarfBuzzShaper::setFontFeatures() |
| break; |
| } |
| + static hb_feature_t hwid = { HB_TAG('h', 'w', 'i', 'd'), 1, 0, static_cast<unsigned>(-1) }; |
| + static hb_feature_t twid = { HB_TAG('t', 'w', 'i', 'd'), 1, 0, static_cast<unsigned>(-1) }; |
| + static hb_feature_t qwid = { HB_TAG('d', 'w', 'i', 'd'), 1, 0, static_cast<unsigned>(-1) }; |
| + switch (description.widthVariant()) { |
| + case HalfWidth: |
| + m_features.append(hwid); |
| + break; |
| + case ThirdWidth: |
| + m_features.append(twid); |
| + break; |
| + case QuarterWidth: |
| + m_features.append(qwid); |
| + break; |
| + case RegularWidth: |
| + // to keep compiler happy |
|
Dominik Röttsches
2014/05/09 07:52:18
Please remove this comment.
h.joshi
2014/05/09 08:48:25
Okey, will remove this in next patch
On 2014/05/0
|
| + break; |
| + } |
| + |
| FontFeatureSettings* settings = description.featureSettings(); |
| if (!settings) |
| return; |