Index: Source/core/rendering/RenderTableSection.h |
diff --git a/Source/core/rendering/RenderTableSection.h b/Source/core/rendering/RenderTableSection.h |
index 07866bd1afc2618122697340f572807282c0c27d..37f49e268cf7f85a9974682b3a08cc79984d2e06 100644 |
--- a/Source/core/rendering/RenderTableSection.h |
+++ b/Source/core/rendering/RenderTableSection.h |
@@ -174,10 +174,10 @@ public: |
void appendColumn(unsigned pos); |
void splitColumn(unsigned pos, unsigned first); |
- int calcOuterBorderBefore() const; |
- int calcOuterBorderAfter() const; |
- int calcOuterBorderStart() const; |
- int calcOuterBorderEnd() const; |
+ enum BlockBorderSide { BorderBefore, BorderAfter }; |
+ int calcBlockDirectionOuterBorder(BlockBorderSide) const; |
+ enum InlineBorderSide { BorderStart, BorderEnd }; |
+ int calcInlineDirectionOuterBorder(InlineBorderSide) const; |
void recalcOuterBorder(); |
int outerBorderBefore() const { return m_outerBorderBefore; } |