| 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 InlineFlowBoxPainter_h | 5 #ifndef InlineFlowBoxPainter_h |
| 6 #define InlineFlowBoxPainter_h | 6 #define InlineFlowBoxPainter_h |
| 7 | 7 |
| 8 #include "core/layout/style/ShadowData.h" | 8 #include "core/style/ShadowData.h" |
| 9 #include "platform/graphics/GraphicsTypes.h" | 9 #include "platform/graphics/GraphicsTypes.h" |
| 10 #include "platform/text/TextDirection.h" | 10 #include "platform/text/TextDirection.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 class Color; | 14 class Color; |
| 15 class FillLayer; | 15 class FillLayer; |
| 16 class InlineFlowBox; | 16 class InlineFlowBox; |
| 17 class LayoutPoint; | 17 class LayoutPoint; |
| 18 class LayoutRect; | 18 class LayoutRect; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 41 PaintBordersWithClip | 41 PaintBordersWithClip |
| 42 }; | 42 }; |
| 43 BorderPaintingType getBorderPaintType(const LayoutRect& adjustedFrameRect, L
ayoutRect& adjustedClipRect) const; | 43 BorderPaintingType getBorderPaintType(const LayoutRect& adjustedFrameRect, L
ayoutRect& adjustedClipRect) const; |
| 44 | 44 |
| 45 InlineFlowBox& m_inlineFlowBox; | 45 InlineFlowBox& m_inlineFlowBox; |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 } // namespace blink | 48 } // namespace blink |
| 49 | 49 |
| 50 #endif // InlineFlowBoxPainter_h | 50 #endif // InlineFlowBoxPainter_h |
| OLD | NEW |