| 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 12 matching lines...) Expand all Loading... |
| 23 #ifndef LayoutBlock_h | 23 #ifndef LayoutBlock_h |
| 24 #define LayoutBlock_h | 24 #define LayoutBlock_h |
| 25 | 25 |
| 26 #include "core/CoreExport.h" | 26 #include "core/CoreExport.h" |
| 27 #include "core/layout/ColumnInfo.h" | 27 #include "core/layout/ColumnInfo.h" |
| 28 #include "core/layout/FloatingObjects.h" | 28 #include "core/layout/FloatingObjects.h" |
| 29 #include "core/layout/GapRects.h" | 29 #include "core/layout/GapRects.h" |
| 30 #include "core/layout/LayoutBox.h" | 30 #include "core/layout/LayoutBox.h" |
| 31 #include "core/layout/line/LineBoxList.h" | 31 #include "core/layout/line/LineBoxList.h" |
| 32 #include "core/layout/line/RootInlineBox.h" | 32 #include "core/layout/line/RootInlineBox.h" |
| 33 #include "core/layout/style/ShapeValue.h" | 33 #include "core/style/ShapeValue.h" |
| 34 #include "platform/text/TextBreakIterator.h" | 34 #include "platform/text/TextBreakIterator.h" |
| 35 #include "platform/text/TextRun.h" | 35 #include "platform/text/TextRun.h" |
| 36 #include "wtf/ListHashSet.h" | 36 #include "wtf/ListHashSet.h" |
| 37 #include "wtf/OwnPtr.h" | 37 #include "wtf/OwnPtr.h" |
| 38 | 38 |
| 39 namespace blink { | 39 namespace blink { |
| 40 | 40 |
| 41 class LineLayoutState; | 41 class LineLayoutState; |
| 42 struct PaintInfo; | 42 struct PaintInfo; |
| 43 class LayoutInline; | 43 class LayoutInline; |
| (...skipping 434 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 |