| Index: Source/core/rendering/RenderObject.h
|
| diff --git a/Source/core/rendering/RenderObject.h b/Source/core/rendering/RenderObject.h
|
| index 20331d41827bc1500b968191515e6c2cf8037906..d24f5d0b868604589585bab1e1d420cb263a12b9 100644
|
| --- a/Source/core/rendering/RenderObject.h
|
| +++ b/Source/core/rendering/RenderObject.h
|
| @@ -1077,6 +1077,9 @@ public:
|
| void doNotUseInvalidatePaintForWholeRendererSynchronously() const { invalidatePaintForWholeRenderer(); }
|
| virtual LayoutRect viewRect() const;
|
|
|
| + // FIXME: make this not public.
|
| + void drawLineForBoxSide(GraphicsContext*, int x1, int y1, int x2, int y2, BoxSide, Color, EBorderStyle, int adjbw1, int adjbw2, bool antialias = false);
|
| +
|
| protected:
|
| inline bool layerCreationAllowedForSubtree() const;
|
|
|
| @@ -1089,8 +1092,6 @@ protected:
|
| void propagateStyleToAnonymousChildren(bool blockChildrenOnly = false);
|
| virtual void updateAnonymousChildStyle(const RenderObject* child, RenderStyle* style) const { }
|
|
|
| - void drawLineForBoxSide(GraphicsContext*, int x1, int y1, int x2, int y2, BoxSide,
|
| - Color, EBorderStyle, int adjbw1, int adjbw2, bool antialias = false);
|
| void drawDashedOrDottedBoxSide(GraphicsContext*, int x1, int y1, int x2, int y2,
|
| BoxSide, Color, int thickness, EBorderStyle, bool antialias);
|
| void drawDoubleBoxSide(GraphicsContext*, int x1, int y1, int x2, int y2,
|
|
|