blob: 8e0bde646ebeacc4bce17e3e777183575d49b177 [file] [log] [blame]
// 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 THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_TABLE_ROW_PAINTER_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_TABLE_ROW_PAINTER_H_
#include "third_party/blink/renderer/core/style/shadow_data.h"
#include "third_party/blink/renderer/platform/wtf/allocator.h"
namespace blink {
struct PaintInfo;
class CellSpan;
class LayoutTableRow;
class TableRowPainter {
STACK_ALLOCATED();
public:
TableRowPainter(const LayoutTableRow& layout_table_row)
: layout_table_row_(layout_table_row) {}
void Paint(const PaintInfo&);
void PaintOutline(const PaintInfo&);
void PaintBoxDecorationBackground(const PaintInfo&,
const CellSpan& dirtied_columns);
void PaintCollapsedBorders(const PaintInfo&,
const CellSpan& dirtied_columns);
private:
void HandleChangedPartialPaint(const PaintInfo&,
const CellSpan& dirtied_columns);
// Paint a hit test display item and record hit test data. This should be
// called in the background paint phase even if there is no other painted
// content.
void RecordHitTestData(const PaintInfo&, const LayoutPoint& paint_offset);
const LayoutTableRow& layout_table_row_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_TABLE_ROW_PAINTER_H_