Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Side by Side Diff: third_party/WebKit/Source/core/paint/TableSectionPainter.h

Issue 2584143003: Repeat footers in paginated context (Closed)
Patch Set: bug 656232 Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef TableSectionPainter_h 5 #ifndef TableSectionPainter_h
6 #define TableSectionPainter_h 6 #define TableSectionPainter_h
7 7
8 #include "core/paint/PaintPhase.h" 8 #include "core/paint/PaintPhase.h"
9 #include "core/style/ShadowData.h" 9 #include "core/style/ShadowData.h"
10 #include "platform/wtf/Allocator.h" 10 #include "platform/wtf/Allocator.h"
(...skipping 26 matching lines...) Expand all
37 void PaintBackgroundsBehindCell(const LayoutTableCell&, 37 void PaintBackgroundsBehindCell(const LayoutTableCell&,
38 const PaintInfo&, 38 const PaintInfo&,
39 const LayoutPoint&); 39 const LayoutPoint&);
40 void PaintCell(const LayoutTableCell&, const PaintInfo&, const LayoutPoint&); 40 void PaintCell(const LayoutTableCell&, const PaintInfo&, const LayoutPoint&);
41 41
42 enum ItemToPaint { kPaintCollapsedBorders, kPaintSection }; 42 enum ItemToPaint { kPaintCollapsedBorders, kPaintSection };
43 void PaintRepeatingHeaderGroup( 43 void PaintRepeatingHeaderGroup(
44 const PaintInfo&, 44 const PaintInfo&,
45 const LayoutPoint& paint_offset, 45 const LayoutPoint& paint_offset,
46 ItemToPaint); 46 ItemToPaint);
47 void PaintRepeatingFooterGroup(const PaintInfo&,
48 const LayoutPoint& paint_offset,
49 ItemToPaint);
47 void PaintSection(const PaintInfo&, const LayoutPoint&); 50 void PaintSection(const PaintInfo&, const LayoutPoint&);
48 void PaintCollapsedSectionBorders(const PaintInfo&, const LayoutPoint&); 51 void PaintCollapsedSectionBorders(const PaintInfo&, const LayoutPoint&);
49 52
50 const LayoutTableSection& layout_table_section_; 53 const LayoutTableSection& layout_table_section_;
51 }; 54 };
52 55
53 } // namespace blink 56 } // namespace blink
54 57
55 #endif // TableSectionPainter_h 58 #endif // TableSectionPainter_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698