Index: third_party/WebKit/Source/core/paint/TableSectionPainter.h |
diff --git a/third_party/WebKit/Source/core/paint/TableSectionPainter.h b/third_party/WebKit/Source/core/paint/TableSectionPainter.h |
index 9e33c0224b4a3b76dfbeed9e62555dbafc0bb749..d6ff986f4b2cadcc81b66cc1cca78c3d86d76baf 100644 |
--- a/third_party/WebKit/Source/core/paint/TableSectionPainter.h |
+++ b/third_party/WebKit/Source/core/paint/TableSectionPainter.h |
@@ -6,7 +6,6 @@ |
#define TableSectionPainter_h |
#include "core/paint/PaintPhase.h" |
-#include "core/paint/PaintResult.h" |
#include "core/style/ShadowData.h" |
#include "wtf/Allocator.h" |
@@ -27,10 +26,9 @@ |
: m_layoutTableSection(layoutTableSection) {} |
void paint(const PaintInfo&, const LayoutPoint&); |
- |
- PaintResult paintCollapsedBorders(const PaintInfo&, |
- const LayoutPoint&, |
- const CollapsedBorderValue&); |
+ void paintCollapsedBorders(const PaintInfo&, |
+ const LayoutPoint&, |
+ const CollapsedBorderValue&); |
private: |
void paintObject(const PaintInfo&, const LayoutPoint&); |
@@ -58,9 +56,9 @@ |
const CollapsedBorderValue& currentBorderValue, |
ItemToPaint); |
void paintSection(const PaintInfo&, const LayoutPoint&); |
- PaintResult paintCollapsedSectionBorders(const PaintInfo&, |
- const LayoutPoint&, |
- const CollapsedBorderValue&); |
+ void paintCollapsedSectionBorders(const PaintInfo&, |
+ const LayoutPoint&, |
+ const CollapsedBorderValue&); |
const LayoutTableSection& m_layoutTableSection; |
}; |