| 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/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 #include "wtf/Allocator.h" | 11 #include "platform/wtf/Allocator.h" |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 class Color; | 15 class Color; |
| 16 class FillLayer; | 16 class FillLayer; |
| 17 class InlineFlowBox; | 17 class InlineFlowBox; |
| 18 class IntRect; | 18 class IntRect; |
| 19 class LayoutPoint; | 19 class LayoutPoint; |
| 20 class LayoutRect; | 20 class LayoutRect; |
| 21 class LayoutSize; | 21 class LayoutSize; |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 }; | 71 }; |
| 72 BorderPaintingType GetBorderPaintType(const LayoutRect& adjusted_frame_rect, | 72 BorderPaintingType GetBorderPaintType(const LayoutRect& adjusted_frame_rect, |
| 73 IntRect& adjusted_clip_rect) const; | 73 IntRect& adjusted_clip_rect) const; |
| 74 | 74 |
| 75 const InlineFlowBox& inline_flow_box_; | 75 const InlineFlowBox& inline_flow_box_; |
| 76 }; | 76 }; |
| 77 | 77 |
| 78 } // namespace blink | 78 } // namespace blink |
| 79 | 79 |
| 80 #endif // InlineFlowBoxPainter_h | 80 #endif // InlineFlowBoxPainter_h |
| OLD | NEW |