Index: Source/WebCore/css/CSSFontSelector.h |
=================================================================== |
--- Source/WebCore/css/CSSFontSelector.h (revision 109698) |
+++ Source/WebCore/css/CSSFontSelector.h (working copy) |
@@ -51,6 +51,8 @@ |
return adoptRef(new CSSFontSelector(document)); |
} |
virtual ~CSSFontSelector(); |
+ |
+ virtual unsigned version() const OVERRIDE { return m_version; } |
virtual FontData* getFontData(const FontDescription& fontDescription, const AtomicString& familyName); |
@@ -85,6 +87,8 @@ |
Vector<CachedResourceHandle<CachedFont> > m_fontsToBeginLoading; |
Timer<CSSFontSelector> m_beginLoadingTimer; |
+ |
+ unsigned m_version; |
}; |
} // namespace WebCore |