| Index: Source/core/rendering/BoxDecorationData.h
|
| diff --git a/Source/core/rendering/BoxDecorationData.h b/Source/core/rendering/BoxDecorationData.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c78975f2ba9f1c09d1eedfc9361947fd94a9a69f
|
| --- /dev/null
|
| +++ b/Source/core/rendering/BoxDecorationData.h
|
| @@ -0,0 +1,34 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef BoxDecorationData_h
|
| +#define BoxDecorationData_h
|
| +
|
| +#include "core/rendering/RenderBoxModelObject.h"
|
| +#include "platform/graphics/Color.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class RenderStyle;
|
| +class GraphicsContext;
|
| +
|
| +// Information extracted from RenderStyle for box painting.
|
| +class BoxDecorationData {
|
| +public:
|
| + BoxDecorationData(const RenderStyle&, bool canRenderBorderImage, bool backgroundHasOpaqueTopLayer, GraphicsContext*);
|
| +
|
| + Color backgroundColor;
|
| + bool hasBackground;
|
| + bool hasBorder;
|
| + bool hasAppearance;
|
| + BackgroundBleedAvoidance bleedAvoidance;
|
| +
|
| +private:
|
| + BackgroundBleedAvoidance determineBackgroundBleedAvoidance(const RenderStyle&, bool canRenderBorderImage, bool backgroundHasOpaqueTopLayer, GraphicsContext*);
|
| + bool borderObscuresBackgroundEdge(const RenderStyle&, const FloatSize& contextScale) const;
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif
|
|
|