Chromium Code Reviews| Index: Source/core/rendering/RenderObject.h |
| diff --git a/Source/core/rendering/RenderObject.h b/Source/core/rendering/RenderObject.h |
| index 6e9576a6edea049bbe65ac78f20fe6e2f4ce8346..74d61dc7c2f6a4f7d29b4dd983c66107a9b897c2 100644 |
| --- a/Source/core/rendering/RenderObject.h |
| +++ b/Source/core/rendering/RenderObject.h |
| @@ -1081,6 +1081,9 @@ public: |
| void doNotUseInvalidatePaintForWholeRendererSynchronously() const { invalidatePaintForWholeRenderer(); } |
| virtual LayoutRect viewRect() const; |
| + // FIXME: make this not public. |
|
pdr.
2014/09/12 18:23:33
We could leave this as protected and use a friend
|
| + 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; |
| @@ -1093,8 +1096,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, |