| Index: Source/core/paint/BoxDecorationData.h
|
| diff --git a/Source/core/paint/BoxDecorationData.h b/Source/core/paint/BoxDecorationData.h
|
| index 4e853ffb7c57a61a2640c2aa25215ba31638de31..63087ffba95cdcb99333e2adec72a4e18bbaf022 100644
|
| --- a/Source/core/paint/BoxDecorationData.h
|
| +++ b/Source/core/paint/BoxDecorationData.h
|
| @@ -11,12 +11,12 @@
|
| namespace blink {
|
|
|
| class GraphicsContext;
|
| -class RenderBox;
|
| +class LayoutBox;
|
|
|
| // Information extracted from LayoutStyle for box painting.
|
| class BoxDecorationData {
|
| public:
|
| - BoxDecorationData(const RenderBox&, GraphicsContext*);
|
| + BoxDecorationData(const LayoutBox&, GraphicsContext*);
|
|
|
| Color backgroundColor;
|
| bool hasBackground;
|
| @@ -25,7 +25,7 @@ public:
|
| BackgroundBleedAvoidance bleedAvoidance() { return static_cast<BackgroundBleedAvoidance>(m_bleedAvoidance); }
|
|
|
| private:
|
| - BackgroundBleedAvoidance determineBackgroundBleedAvoidance(const RenderBox&, GraphicsContext*);
|
| + BackgroundBleedAvoidance determineBackgroundBleedAvoidance(const LayoutBox&, GraphicsContext*);
|
| bool borderObscuresBackgroundEdge(const LayoutStyle&, const FloatSize& contextScale) const;
|
| unsigned m_bleedAvoidance : 2; // BackgroundBleedAvoidance
|
| };
|
|
|