| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2003, 2006, 2007 Apple Inc. All rights reserved. | 4 * Copyright (C) 2003, 2006, 2007 Apple Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 1451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1462 const HitTestLocation& location_in_container, | 1462 const HitTestLocation& location_in_container, |
| 1463 const LayoutPoint& accumulated_offset, | 1463 const LayoutPoint& accumulated_offset, |
| 1464 HitTestAction); | 1464 HitTestAction); |
| 1465 void AddLayerHitTestRects(LayerHitTestRects&, | 1465 void AddLayerHitTestRects(LayerHitTestRects&, |
| 1466 const PaintLayer* current_composited_layer, | 1466 const PaintLayer* current_composited_layer, |
| 1467 const LayoutPoint& layer_offset, | 1467 const LayoutPoint& layer_offset, |
| 1468 const LayoutRect& container_rect) const override; | 1468 const LayoutRect& container_rect) const override; |
| 1469 void ComputeSelfHitTestRects(Vector<LayoutRect>&, | 1469 void ComputeSelfHitTestRects(Vector<LayoutRect>&, |
| 1470 const LayoutPoint& layer_offset) const override; | 1470 const LayoutPoint& layer_offset) const override; |
| 1471 | 1471 |
| 1472 PaintInvalidationReason InvalidatePaintIfNeeded( | 1472 PaintInvalidationReason InvalidatePaint( |
| 1473 const PaintInvalidationState&) override; | 1473 const PaintInvalidationState&) override; |
| 1474 PaintInvalidationReason InvalidatePaintIfNeeded( | 1474 PaintInvalidationReason InvalidatePaint( |
| 1475 const PaintInvalidatorContext&) const override; | 1475 const PaintInvalidatorContext&) const override; |
| 1476 | 1476 |
| 1477 bool ColumnFlexItemHasStretchAlignment() const; | 1477 bool ColumnFlexItemHasStretchAlignment() const; |
| 1478 bool IsStretchingColumnFlexItem() const; | 1478 bool IsStretchingColumnFlexItem() const; |
| 1479 bool HasStretchedLogicalWidth() const; | 1479 bool HasStretchedLogicalWidth() const; |
| 1480 | 1480 |
| 1481 void ExcludeScrollbars( | 1481 void ExcludeScrollbars( |
| 1482 LayoutRect&, | 1482 LayoutRect&, |
| 1483 OverlayScrollbarClipBehavior = kIgnorePlatformOverlayScrollbarSize) const; | 1483 OverlayScrollbarClipBehavior = kIgnorePlatformOverlayScrollbarSize) const; |
| 1484 | 1484 |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1738 break_value == EBreakBetween::kLeft || | 1738 break_value == EBreakBetween::kLeft || |
| 1739 break_value == EBreakBetween::kPage || | 1739 break_value == EBreakBetween::kPage || |
| 1740 break_value == EBreakBetween::kRecto || | 1740 break_value == EBreakBetween::kRecto || |
| 1741 break_value == EBreakBetween::kRight || | 1741 break_value == EBreakBetween::kRight || |
| 1742 break_value == EBreakBetween::kVerso; | 1742 break_value == EBreakBetween::kVerso; |
| 1743 } | 1743 } |
| 1744 | 1744 |
| 1745 } // namespace blink | 1745 } // namespace blink |
| 1746 | 1746 |
| 1747 #endif // LayoutBox_h | 1747 #endif // LayoutBox_h |
| OLD | NEW |