| 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 * (C) 2007 David Smith (catfish.man@gmail.com) | 4 * (C) 2007 David Smith (catfish.man@gmail.com) |
| 5 * Copyright (C) 2003-2013 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003-2013 Apple Inc. All rights reserved. |
| 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 7 * Copyright (C) 2013 Google Inc. All rights reserved. | 7 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 8 * | 8 * |
| 9 * Redistribution and use in source and binary forms, with or without | 9 * Redistribution and use in source and binary forms, with or without |
| 10 * modification, are permitted provided that the following conditions are | 10 * modification, are permitted provided that the following conditions are |
| (...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 | 470 |
| 471 void SetLogicalLeftForChild(LayoutBox& child, LayoutUnit logical_left); | 471 void SetLogicalLeftForChild(LayoutBox& child, LayoutUnit logical_left); |
| 472 void SetLogicalTopForChild(LayoutBox& child, LayoutUnit logical_top); | 472 void SetLogicalTopForChild(LayoutBox& child, LayoutUnit logical_top); |
| 473 void DetermineLogicalLeftPositionForChild(LayoutBox& child); | 473 void DetermineLogicalLeftPositionForChild(LayoutBox& child); |
| 474 | 474 |
| 475 void AddOutlineRects(Vector<LayoutRect>&, | 475 void AddOutlineRects(Vector<LayoutRect>&, |
| 476 const LayoutPoint& additional_offset, | 476 const LayoutPoint& additional_offset, |
| 477 IncludeBlockVisualOverflowOrNot) const override; | 477 IncludeBlockVisualOverflowOrNot) const override; |
| 478 | 478 |
| 479 bool PaintedOutputOfObjectHasNoEffectRegardlessOfSize() const override; | 479 bool PaintedOutputOfObjectHasNoEffectRegardlessOfSize() const override; |
| 480 PaintInvalidationReason InvalidatePaint( | 480 PaintInvalidationReason DeprecatedInvalidatePaint( |
| 481 const PaintInvalidationState&) override; | 481 const PaintInvalidationState&) override; |
| 482 void InvalidateDisplayItemClients(PaintInvalidationReason) const override; | 482 void InvalidateDisplayItemClients(PaintInvalidationReason) const override; |
| 483 | 483 |
| 484 Node* NodeForHitTest() const final; | 484 Node* NodeForHitTest() const final; |
| 485 bool HitTestChildren(HitTestResult&, | 485 bool HitTestChildren(HitTestResult&, |
| 486 const HitTestLocation& location_in_container, | 486 const HitTestLocation& location_in_container, |
| 487 const LayoutPoint& accumulated_offset, | 487 const LayoutPoint& accumulated_offset, |
| 488 HitTestAction) override; | 488 HitTestAction) override; |
| 489 | 489 |
| 490 LayoutSize AccumulateInFlowPositionOffsets() const override; | 490 LayoutSize AccumulateInFlowPositionOffsets() const override; |
| (...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 974 void PositionDialog(); | 974 void PositionDialog(); |
| 975 | 975 |
| 976 // END METHODS DEFINED IN LayoutBlockFlowLine | 976 // END METHODS DEFINED IN LayoutBlockFlowLine |
| 977 }; | 977 }; |
| 978 | 978 |
| 979 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlockFlow, IsLayoutBlockFlow()); | 979 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlockFlow, IsLayoutBlockFlow()); |
| 980 | 980 |
| 981 } // namespace blink | 981 } // namespace blink |
| 982 | 982 |
| 983 #endif // LayoutBlockFlow_h | 983 #endif // LayoutBlockFlow_h |
| OLD | NEW |