| Index: Source/core/paint/LineBoxListPainter.h
|
| diff --git a/Source/core/paint/LineBoxListPainter.h b/Source/core/paint/LineBoxListPainter.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1f6134f77bbfc8eb9545aa97bcc50ae0022b0390
|
| --- /dev/null
|
| +++ b/Source/core/paint/LineBoxListPainter.h
|
| @@ -0,0 +1,29 @@
|
| +// 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 LineBoxListPainter_h
|
| +#define LineBoxListPainter_h
|
| +
|
| +#include "core/rendering/style/RenderStyleConstants.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class LayoutPoint;
|
| +struct PaintInfo;
|
| +class RenderBoxModelObject;
|
| +class RenderLineBoxList;
|
| +
|
| +class LineBoxListPainter {
|
| +public:
|
| + LineBoxListPainter(RenderLineBoxList& renderLineBoxList) : m_renderLineBoxList(renderLineBoxList) { }
|
| +
|
| + void paint(RenderBoxModelObject*, PaintInfo&, const LayoutPoint&) const;
|
| +
|
| +private:
|
| + RenderLineBoxList& m_renderLineBoxList;
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // LineBoxListPainter_h
|
|
|