| 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 BoxDecorationData_h | 5 #ifndef BoxDecorationData_h |
| 6 #define BoxDecorationData_h | 6 #define BoxDecorationData_h |
| 7 | 7 |
| 8 #include "core/layout/LayoutBoxModelObject.h" // For BackgroundBleedAvoidance. | 8 #include "core/layout/LayoutBoxModelObject.h" // For BackgroundBleedAvoidance. |
| 9 #include "platform/graphics/Color.h" | 9 #include "platform/graphics/Color.h" |
| 10 | 10 |
| 11 namespace blink { | 11 namespace blink { |
| 12 | 12 |
| 13 class GraphicsContext; | 13 class GraphicsContext; |
| 14 class RenderBox; | 14 class LayoutBox; |
| 15 | 15 |
| 16 // Information extracted from LayoutStyle for box painting. | 16 // Information extracted from LayoutStyle for box painting. |
| 17 class BoxDecorationData { | 17 class BoxDecorationData { |
| 18 public: | 18 public: |
| 19 BoxDecorationData(const RenderBox&, GraphicsContext*); | 19 BoxDecorationData(const LayoutBox&, GraphicsContext*); |
| 20 | 20 |
| 21 Color backgroundColor; | 21 Color backgroundColor; |
| 22 bool hasBackground; | 22 bool hasBackground; |
| 23 bool hasBorder; | 23 bool hasBorder; |
| 24 bool hasAppearance; | 24 bool hasAppearance; |
| 25 BackgroundBleedAvoidance bleedAvoidance() { return static_cast<BackgroundBle
edAvoidance>(m_bleedAvoidance); } | 25 BackgroundBleedAvoidance bleedAvoidance() { return static_cast<BackgroundBle
edAvoidance>(m_bleedAvoidance); } |
| 26 | 26 |
| 27 private: | 27 private: |
| 28 BackgroundBleedAvoidance determineBackgroundBleedAvoidance(const RenderBox&,
GraphicsContext*); | 28 BackgroundBleedAvoidance determineBackgroundBleedAvoidance(const LayoutBox&,
GraphicsContext*); |
| 29 bool borderObscuresBackgroundEdge(const LayoutStyle&, const FloatSize& conte
xtScale) const; | 29 bool borderObscuresBackgroundEdge(const LayoutStyle&, const FloatSize& conte
xtScale) const; |
| 30 unsigned m_bleedAvoidance : 2; // BackgroundBleedAvoidance | 30 unsigned m_bleedAvoidance : 2; // BackgroundBleedAvoidance |
| 31 }; | 31 }; |
| 32 | 32 |
| 33 } // namespace blink | 33 } // namespace blink |
| 34 | 34 |
| 35 #endif | 35 #endif |
| OLD | NEW |