| Index: Source/core/rendering/RenderObject.h
|
| diff --git a/Source/core/rendering/RenderObject.h b/Source/core/rendering/RenderObject.h
|
| index 6759aed9f69c39b2cc43c88c318cbcb6e3a4df35..669a0f5ed748ef2009bf8278f8228d5d42290010 100644
|
| --- a/Source/core/rendering/RenderObject.h
|
| +++ b/Source/core/rendering/RenderObject.h
|
| @@ -1015,7 +1015,7 @@ public:
|
|
|
| bool createsGroup() const { return isTransparent() || hasMask() || hasFilter() || hasBlendMode(); }
|
|
|
| - virtual void addFocusRingRects(Vector<IntRect>&, const LayoutPoint& /* additionalOffset */, const RenderLayerModelObject* /* paintContainer */ = 0) const { };
|
| + virtual void addFocusRingRects(Vector<LayoutRect>&, const LayoutPoint& additionalOffset, const RenderLayerModelObject* paintContainer) const { }
|
|
|
| // Compute a list of hit-test rectangles per layer rooted at this renderer.
|
| virtual void computeLayerHitTestRects(LayerHitTestRects&) const;
|
| @@ -1116,7 +1116,7 @@ protected:
|
| void paintFocusRing(PaintInfo&, const LayoutPoint&, RenderStyle*);
|
| void paintOutline(PaintInfo&, const LayoutRect&);
|
| void addPDFURLRect(GraphicsContext*, const LayoutRect&);
|
| - void addChildFocusRingRects(Vector<IntRect>&, const LayoutPoint& additionalOffset, const RenderLayerModelObject* paintContainer) const;
|
| + void addChildFocusRingRects(Vector<LayoutRect>&, const LayoutPoint& additionalOffset, const RenderLayerModelObject* paintContainer) const;
|
|
|
| virtual LayoutRect viewRect() const;
|
|
|
|
|