| 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 BoxPainter_h | 5 #ifndef BoxPainter_h |
| 6 #define BoxPainter_h | 6 #define BoxPainter_h |
| 7 | 7 |
| 8 #include "core/layout/BackgroundBleedAvoidance.h" | 8 #include "core/layout/BackgroundBleedAvoidance.h" |
| 9 #include "core/style/ShadowData.h" | 9 #include "core/style/ShadowData.h" |
| 10 #include "platform/geometry/LayoutSize.h" | 10 #include "platform/geometry/LayoutSize.h" |
| 11 #include "platform/graphics/GraphicsTypes.h" | 11 #include "platform/graphics/GraphicsTypes.h" |
| 12 #include "platform/wtf/Allocator.h" |
| 12 #include "third_party/skia/include/core/SkBlendMode.h" | 13 #include "third_party/skia/include/core/SkBlendMode.h" |
| 13 #include "wtf/Allocator.h" | |
| 14 | 14 |
| 15 namespace blink { | 15 namespace blink { |
| 16 | 16 |
| 17 class ComputedStyle; | 17 class ComputedStyle; |
| 18 class Document; | 18 class Document; |
| 19 class FillLayer; | 19 class FillLayer; |
| 20 class FloatRoundedRect; | 20 class FloatRoundedRect; |
| 21 class GraphicsContext; | 21 class GraphicsContext; |
| 22 class Image; | 22 class Image; |
| 23 class InlineFlowBox; | 23 class InlineFlowBox; |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 const LayoutRect&, | 128 const LayoutRect&, |
| 129 const Color& background_color, | 129 const Color& background_color, |
| 130 BackgroundBleedAvoidance = kBackgroundBleedNone); | 130 BackgroundBleedAvoidance = kBackgroundBleedNone); |
| 131 | 131 |
| 132 const LayoutBox& layout_box_; | 132 const LayoutBox& layout_box_; |
| 133 }; | 133 }; |
| 134 | 134 |
| 135 } // namespace blink | 135 } // namespace blink |
| 136 | 136 |
| 137 #endif | 137 #endif |
| OLD | NEW |