| Index: Source/WebCore/dom/Document.h
|
| diff --git a/Source/WebCore/dom/Document.h b/Source/WebCore/dom/Document.h
|
| index 184ee9047179f9108a0d8466f0d1f86abb3fabf3..21c5e3625508e3288a35761bf161b32bb3a953dd 100644
|
| --- a/Source/WebCore/dom/Document.h
|
| +++ b/Source/WebCore/dom/Document.h
|
| @@ -144,6 +144,7 @@ class StyleSheet;
|
| class StyleSheetContents;
|
| class StyleSheetList;
|
| class Text;
|
| +class TextAutosizer;
|
| class TextResourceDecoder;
|
| class TreeWalker;
|
| class VisitedLinkState;
|
| @@ -184,10 +185,6 @@ class MicroDataItemList;
|
| class Prerenderer;
|
| #endif
|
|
|
| -#if ENABLE(TEXT_AUTOSIZING)
|
| -class TextAutosizer;
|
| -#endif
|
| -
|
| #if ENABLE(FONT_LOAD_EVENTS)
|
| class FontLoader;
|
| #endif
|
| @@ -1141,9 +1138,7 @@ public:
|
| Prerenderer* prerenderer() { return m_prerenderer.get(); }
|
| #endif
|
|
|
| -#if ENABLE(TEXT_AUTOSIZING)
|
| TextAutosizer* textAutosizer() { return m_textAutosizer.get(); }
|
| -#endif
|
|
|
| #if ENABLE(CUSTOM_ELEMENTS)
|
| PassRefPtr<Element> createElement(const AtomicString& localName, const AtomicString& typeExtension, ExceptionCode&);
|
| @@ -1532,9 +1527,7 @@ private:
|
| OwnPtr<Prerenderer> m_prerenderer;
|
| #endif
|
|
|
| -#if ENABLE(TEXT_AUTOSIZING)
|
| OwnPtr<TextAutosizer> m_textAutosizer;
|
| -#endif
|
|
|
| #if ENABLE(CUSTOM_ELEMENTS)
|
| RefPtr<CustomElementRegistry> m_registry;
|
|
|