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

Unified Diff: third_party/WebKit/Source/core/paint/TablePainter.h

Issue 2021703002: Display table header groups at the top of each page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/paint/TablePainter.h
diff --git a/third_party/WebKit/Source/core/paint/TablePainter.h b/third_party/WebKit/Source/core/paint/TablePainter.h
index 20e921a1c383899a1a8a6e22771abd444b0e5e95..2ee0ff1e75e51dcc9115ec922349e8663e223385 100644
--- a/third_party/WebKit/Source/core/paint/TablePainter.h
+++ b/third_party/WebKit/Source/core/paint/TablePainter.h
@@ -9,6 +9,8 @@
namespace blink {
+class CollapsedBorderValue;
+class LayoutBox;
class LayoutPoint;
class LayoutTable;
struct PaintInfo;
@@ -23,6 +25,12 @@ public:
void paintMask(const PaintInfo&, const LayoutPoint&);
private:
+ enum ItemToPaint {
+ PaintCollapsedBorders,
+ PaintChild
+ };
+ void paintRepeatingHeaderGroup(const PaintInfo&, const LayoutPoint& paintOffset, LayoutBox* child, const CollapsedBorderValue& currentBorderValue, ItemToPaint);
+
const LayoutTable& m_layoutTable;
};

Powered by Google App Engine
This is Rietveld 408576698