| 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, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All r
ights reserved. | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All r
ights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 // Delay update scrollbar until finishDelayUpdateScrollInfo() will be | 291 // Delay update scrollbar until finishDelayUpdateScrollInfo() will be |
| 292 // called. This function is used when a flexbox is laying out its | 292 // called. This function is used when a flexbox is laying out its |
| 293 // descendant. If multiple calls are made to startDelayUpdateScrollInfo(), | 293 // descendant. If multiple calls are made to startDelayUpdateScrollInfo(), |
| 294 // finishDelayUpdateScrollInfo() will do nothing until finishDelayUpdateScro
llInfo() | 294 // finishDelayUpdateScrollInfo() will do nothing until finishDelayUpdateScro
llInfo() |
| 295 // is called the same number of times. | 295 // is called the same number of times. |
| 296 static void startDelayUpdateScrollInfo(); | 296 static void startDelayUpdateScrollInfo(); |
| 297 static void finishDelayUpdateScrollInfo(); | 297 static void finishDelayUpdateScrollInfo(); |
| 298 | 298 |
| 299 void updateScrollInfoAfterLayout(); | 299 void updateScrollInfoAfterLayout(); |
| 300 | 300 |
| 301 virtual void styleWillChange(StyleDifference, const LayoutStyle& newStyle) o
verride; | 301 virtual void styleWillChange(StyleDifference, const ComputedStyle& newStyle)
override; |
| 302 virtual void styleDidChange(StyleDifference, const LayoutStyle* oldStyle) ov
erride; | 302 virtual void styleDidChange(StyleDifference, const ComputedStyle* oldStyle)
override; |
| 303 | 303 |
| 304 virtual bool hasLineIfEmpty() const; | 304 virtual bool hasLineIfEmpty() const; |
| 305 | 305 |
| 306 bool simplifiedLayout(); | 306 bool simplifiedLayout(); |
| 307 virtual void simplifiedNormalFlowLayout(); | 307 virtual void simplifiedNormalFlowLayout(); |
| 308 | 308 |
| 309 void setDesiredColumnCountAndWidth(int, LayoutUnit); | 309 void setDesiredColumnCountAndWidth(int, LayoutUnit); |
| 310 | 310 |
| 311 public: | 311 public: |
| 312 virtual void computeOverflow(LayoutUnit oldClientAfterEdge, bool = false); | 312 virtual void computeOverflow(LayoutUnit oldClientAfterEdge, bool = false); |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 // FIXME: This is temporary as we move code that accesses block flow | 478 // FIXME: This is temporary as we move code that accesses block flow |
| 479 // member variables out of LayoutBlock and into LayoutBlockFlow. | 479 // member variables out of LayoutBlock and into LayoutBlockFlow. |
| 480 friend class LayoutBlockFlow; | 480 friend class LayoutBlockFlow; |
| 481 }; | 481 }; |
| 482 | 482 |
| 483 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlock, isLayoutBlock()); | 483 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlock, isLayoutBlock()); |
| 484 | 484 |
| 485 } // namespace blink | 485 } // namespace blink |
| 486 | 486 |
| 487 #endif // LayoutBlock_h | 487 #endif // LayoutBlock_h |
| OLD | NEW |