| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef ObjectPainter_h | 5 #ifndef ObjectPainter_h |
| 6 #define ObjectPainter_h | 6 #define ObjectPainter_h |
| 7 | 7 |
| 8 #include "core/layout/style/ComputedStyleConstants.h" | 8 #include "core/style/ComputedStyleConstants.h" |
| 9 #include "wtf/Vector.h" | 9 #include "wtf/Vector.h" |
| 10 | 10 |
| 11 namespace blink { | 11 namespace blink { |
| 12 | 12 |
| 13 class Color; | 13 class Color; |
| 14 class GraphicsContext; | 14 class GraphicsContext; |
| 15 class LayoutPoint; | 15 class LayoutPoint; |
| 16 class LayoutRect; | 16 class LayoutRect; |
| 17 struct PaintInfo; | 17 struct PaintInfo; |
| 18 class LayoutObject; | 18 class LayoutObject; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 35 BoxSide, Color, EBorderStyle, int adjacentWidth1, int adjacentWidth2, bo
ol antialias); | 35 BoxSide, Color, EBorderStyle, int adjacentWidth1, int adjacentWidth2, bo
ol antialias); |
| 36 static void drawSolidBoxSide(GraphicsContext*, int x1, int y1, int x2, int y
2, | 36 static void drawSolidBoxSide(GraphicsContext*, int x1, int y1, int x2, int y
2, |
| 37 BoxSide, Color, int adjacentWidth1, int adjacentWidth2, bool antialias); | 37 BoxSide, Color, int adjacentWidth1, int adjacentWidth2, bool antialias); |
| 38 | 38 |
| 39 LayoutObject& m_layoutObject; | 39 LayoutObject& m_layoutObject; |
| 40 }; | 40 }; |
| 41 | 41 |
| 42 } // namespace blink | 42 } // namespace blink |
| 43 | 43 |
| 44 #endif | 44 #endif |
| OLD | NEW |