summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/platform/fonts/FontData.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/platform/fonts/FontData.h')
-rw-r--r--chromium/third_party/WebKit/Source/platform/fonts/FontData.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/third_party/WebKit/Source/platform/fonts/FontData.h b/chromium/third_party/WebKit/Source/platform/fonts/FontData.h
index 003100b3924..fb4a65441cb 100644
--- a/chromium/third_party/WebKit/Source/platform/fonts/FontData.h
+++ b/chromium/third_party/WebKit/Source/platform/fonts/FontData.h
@@ -49,12 +49,12 @@ public:
virtual ~FontData();
virtual const SimpleFontData* fontDataForCharacter(UChar32) const = 0;
- virtual bool containsCharacters(const UChar*, int length) const = 0;
virtual bool isCustomFont() const = 0;
virtual bool isLoading() const = 0;
// Returns whether this is a temporary font data for a custom font which is not yet loaded.
virtual bool isLoadingFallback() const = 0;
virtual bool isSegmented() const = 0;
+ virtual bool shouldSkipDrawing() const = 0;
void setMaxGlyphPageTreeLevel(unsigned level) const { m_maxGlyphPageTreeLevel = level; }
unsigned maxGlyphPageTreeLevel() const { return m_maxGlyphPageTreeLevel; }