| 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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 | 293 |
| 294 void createFloatingObjects(); | 294 void createFloatingObjects(); |
| 295 | 295 |
| 296 void styleWillChange(StyleDifference, const ComputedStyle& newStyle) overrid
e; | 296 void styleWillChange(StyleDifference, const ComputedStyle& newStyle) overrid
e; |
| 297 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override
; | 297 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override
; |
| 298 | 298 |
| 299 void updateBlockChildDirtyBitsBeforeLayout(bool relayoutChildren, LayoutBox&
); | 299 void updateBlockChildDirtyBitsBeforeLayout(bool relayoutChildren, LayoutBox&
); |
| 300 | 300 |
| 301 void addOverflowFromFloats(); | 301 void addOverflowFromFloats(); |
| 302 | 302 |
| 303 void computeSelfHitTestRects(Vector<LayoutRect>&, const LayoutPoint& layerOf
fset) const override; |
| 304 |
| 303 LayoutUnit logicalRightOffsetForLine(LayoutUnit logicalTop, LayoutUnit fixed
Offset, IndentTextOrNot applyTextIndent, LayoutUnit logicalHeight = LayoutUnit()
) const | 305 LayoutUnit logicalRightOffsetForLine(LayoutUnit logicalTop, LayoutUnit fixed
Offset, IndentTextOrNot applyTextIndent, LayoutUnit logicalHeight = LayoutUnit()
) const |
| 304 { | 306 { |
| 305 return adjustLogicalRightOffsetForLine(logicalRightFloatOffsetForLine(lo
gicalTop, fixedOffset, logicalHeight), applyTextIndent); | 307 return adjustLogicalRightOffsetForLine(logicalRightFloatOffsetForLine(lo
gicalTop, fixedOffset, logicalHeight), applyTextIndent); |
| 306 } | 308 } |
| 307 LayoutUnit logicalLeftOffsetForLine(LayoutUnit logicalTop, LayoutUnit fixedO
ffset, IndentTextOrNot applyTextIndent, LayoutUnit logicalHeight = LayoutUnit())
const | 309 LayoutUnit logicalLeftOffsetForLine(LayoutUnit logicalTop, LayoutUnit fixedO
ffset, IndentTextOrNot applyTextIndent, LayoutUnit logicalHeight = LayoutUnit())
const |
| 308 { | 310 { |
| 309 return adjustLogicalLeftOffsetForLine(logicalLeftFloatOffsetForLine(logi
calTop, fixedOffset, logicalHeight), applyTextIndent); | 311 return adjustLogicalLeftOffsetForLine(logicalLeftFloatOffsetForLine(logi
calTop, fixedOffset, logicalHeight), applyTextIndent); |
| 310 } | 312 } |
| 311 | 313 |
| 312 virtual LayoutObject* layoutSpecialExcludedChild(bool /*relayoutChildren*/,
SubtreeLayoutScope&); | 314 virtual LayoutObject* layoutSpecialExcludedChild(bool /*relayoutChildren*/,
SubtreeLayoutScope&); |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 612 | 614 |
| 613 // END METHODS DEFINED IN LayoutBlockFlowLine | 615 // END METHODS DEFINED IN LayoutBlockFlowLine |
| 614 | 616 |
| 615 }; | 617 }; |
| 616 | 618 |
| 617 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlockFlow, isLayoutBlockFlow()); | 619 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlockFlow, isLayoutBlockFlow()); |
| 618 | 620 |
| 619 } // namespace blink | 621 } // namespace blink |
| 620 | 622 |
| 621 #endif // LayoutBlockFlow_h | 623 #endif // LayoutBlockFlow_h |
| OLD | NEW |