Index: Source/WebCore/dom/Document.h |
=================================================================== |
--- Source/WebCore/dom/Document.h (revision 97402) |
+++ Source/WebCore/dom/Document.h (working copy) |
@@ -548,7 +548,7 @@ |
PassRefPtr<RenderStyle> styleForElementIgnoringPendingStylesheets(Element*); |
PassRefPtr<RenderStyle> styleForPage(int pageIndex); |
- void retireCustomFont(FontData*); |
+ void registerCustomFont(FontData*); |
// Returns true if page box (margin boxes and page borders) is visible. |
bool isPageBoxVisible(int pageIndex); |
@@ -1139,7 +1139,7 @@ |
void createStyleSelector(); |
- void deleteRetiredCustomFonts(); |
+ void deleteCustomFonts(); |
PassRefPtr<NodeList> handleZeroPadding(const HitTestRequest&, HitTestResult&) const; |
@@ -1154,7 +1154,7 @@ |
OwnPtr<CSSStyleSelector> m_styleSelector; |
bool m_didCalculateStyleSelector; |
bool m_hasDirtyStyleSelector; |
- Vector<OwnPtr<FontData> > m_retiredCustomFonts; |
+ Vector<OwnPtr<FontData> > m_customFonts; |
mutable RefPtr<CSSPrimitiveValueCache> m_cssPrimitiveValueCache; |