| Index: third_party/WebKit/Source/platform/fonts/FontDataRange.h
|
| diff --git a/third_party/WebKit/Source/platform/fonts/FontDataRange.h b/third_party/WebKit/Source/platform/fonts/FontDataRange.h
|
| index 9e5ad1f8ea1fde2f0d9565e18a5b1cf465dc9365..8eec0265401847ea0ed35c3273ac1ceaa37d615c 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/FontDataRange.h
|
| +++ b/third_party/WebKit/Source/platform/fonts/FontDataRange.h
|
| @@ -62,6 +62,7 @@ struct FontDataRange {
|
| UChar32 to() const { return m_to; }
|
| bool contains(UChar32 testChar) { return testChar >= m_from && testChar <= m_to; }
|
| bool isEntireRange() const { return !m_from && m_to >= kMaxCodepoint; }
|
| + bool hasFontData() const { return fontData(); }
|
| PassRefPtr<SimpleFontData> fontData() const { return m_fontData; }
|
|
|
| private:
|
|
|