Chromium Code Reviews| 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..b090aac9dbc71e04f9ddb11f8319498c6d2fff23 |
| --- /dev/null |
| +++ b/Source/core/paint/LineBoxListPainter.h |
| @@ -0,0 +1,28 @@ |
| +// 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; |
| + |
| + RenderLineBoxList& m_renderLineBoxList; |
|
leviw_travelin_and_unemployed
2014/09/19 23:18:57
This should be private.
chrishtr
2014/09/19 23:19:48
Done.
|
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // LineBoxListPainter_h |