diff options
Diffstat (limited to 'WebCore/css/CSSSegmentedFontFace.h')
-rw-r--r-- | WebCore/css/CSSSegmentedFontFace.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/WebCore/css/CSSSegmentedFontFace.h b/WebCore/css/CSSSegmentedFontFace.h index 57a3c58..03ebe4a 100644 --- a/WebCore/css/CSSSegmentedFontFace.h +++ b/WebCore/css/CSSSegmentedFontFace.h @@ -45,8 +45,6 @@ public: static PassRefPtr<CSSSegmentedFontFace> create(CSSFontSelector* selector) { return adoptRef(new CSSSegmentedFontFace(selector)); } ~CSSSegmentedFontFace(); - bool isLoaded() const; - bool isValid() const; CSSFontSelector* fontSelector() const { return m_fontSelector; } void fontLoaded(CSSFontFace*); @@ -59,6 +57,7 @@ private: CSSSegmentedFontFace(CSSFontSelector*); void pruneTable(); + bool isValid() const; CSSFontSelector* m_fontSelector; HashMap<unsigned, SegmentedFontData*> m_fontDataTable; |