| Index: Source/core/rendering/RenderView.h
 | 
| diff --git a/Source/core/rendering/RenderView.h b/Source/core/rendering/RenderView.h
 | 
| index 8016e8ea4712766ccf8d1e1736fc42a38136acb2..cc364213710ea8f603c2d53c00eb238f487718bc 100644
 | 
| --- a/Source/core/rendering/RenderView.h
 | 
| +++ b/Source/core/rendering/RenderView.h
 | 
| @@ -37,6 +37,9 @@ class RenderLazyBlock;
 | 
|  class RenderQuote;
 | 
|  class RenderWidget;
 | 
|  
 | 
| +// The root of the render tree, corresponding to the CSS initial containing block.
 | 
| +// It's dimensions match that of the viewport, and it is always at position (0,0)
 | 
| +// relative to the document (and so isn't necessarily in view).
 | 
|  class RenderView FINAL : public RenderBlock {
 | 
|  public:
 | 
|      explicit RenderView(Document*);
 | 
| @@ -203,6 +206,7 @@ protected:
 | 
|      virtual const RenderObject* pushMappingToContainer(const RenderLayerModelObject* ancestorToStopAt, RenderGeometryMap&) const OVERRIDE;
 | 
|      virtual void mapAbsoluteToLocalPoint(MapCoordinatesFlags, TransformState&) const;
 | 
|      virtual bool requiresColumns(int desiredColumnCount) const OVERRIDE;
 | 
| +    virtual void computeSelfHitTestRects(Vector<LayoutRect>&, const LayoutPoint& layerOffset) const OVERRIDE;
 | 
|      
 | 
|  private:
 | 
|      bool initializeLayoutState(LayoutState&);
 | 
| 
 |