Index: third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.h |
diff --git a/third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.h b/third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.h |
index 0d0e74b850ab14df961508652266151c0a43a76c..58c0130797e9f83c9ca575a153ee9149394d741a 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.h |
+++ b/third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.h |
@@ -10,12 +10,14 @@ |
namespace blink { |
+class LayoutTable; |
+ |
// Common super class for LayoutTableCol, LayoutTableSection and LayoutTableRow. |
class CORE_EXPORT LayoutTableBoxComponent : public LayoutBox { |
public: |
bool backgroundChangedSinceLastPaintInvalidation() const { return m_backgroundChangedSinceLastPaintInvalidation; } |
void clearBackgroundChangedSinceLastPaintInvalidation() { m_backgroundChangedSinceLastPaintInvalidation = false; } |
- |
+ static bool doCellsHaveDirtyWidth(const LayoutObject& tablePart, const LayoutTable&, const StyleDifference&, const ComputedStyle& oldStyle); |
protected: |
explicit LayoutTableBoxComponent(Element* element) |
: LayoutBox(element) |