| Index: Source/core/dom/Document.h | 
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h | 
| index 6b2653ef397fa013056dd306653a0a2dbf4b5405..278f438cdbda207c68ef8029def4f3bedb8b58a4 100644 | 
| --- a/Source/core/dom/Document.h | 
| +++ b/Source/core/dom/Document.h | 
| @@ -130,7 +130,6 @@ class Prerenderer; | 
| class ProcessingInstruction; | 
| class Range; | 
| class RegisteredEventListener; | 
| -class RenderArena; | 
| class RenderView; | 
| class RequestAnimationFrameCallback; | 
| class SVGDocumentExtensions; | 
| @@ -509,8 +508,6 @@ public: | 
| virtual void suspendActiveDOMObjects(ActiveDOMObject::ReasonForSuspension) OVERRIDE; | 
| virtual void resumeActiveDOMObjects() OVERRIDE; | 
|  | 
| -    RenderArena* renderArena() { return m_renderArena.get(); } | 
| - | 
| // Implemented in RenderView.h to avoid a cyclic header dependency this just | 
| // returns renderer so callers can avoid verbose casts. | 
| RenderView* renderView() const; | 
| @@ -1216,8 +1213,6 @@ private: | 
| bool m_titleSetExplicitly; | 
| RefPtr<Element> m_titleElement; | 
|  | 
| -    RefPtr<RenderArena> m_renderArena; | 
| - | 
| OwnPtr<AXObjectCache> m_axObjectCache; | 
| OwnPtr<DocumentMarkerController> m_markers; | 
|  | 
|  |