| 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 25 matching lines...) Expand all Loading... |
| 36 #ifndef LayoutBlockFlow_h | 36 #ifndef LayoutBlockFlow_h |
| 37 #define LayoutBlockFlow_h | 37 #define LayoutBlockFlow_h |
| 38 | 38 |
| 39 #include "core/CoreExport.h" | 39 #include "core/CoreExport.h" |
| 40 #include "core/layout/FloatingObjects.h" | 40 #include "core/layout/FloatingObjects.h" |
| 41 #include "core/layout/LayoutBlock.h" | 41 #include "core/layout/LayoutBlock.h" |
| 42 #include "core/layout/api/LineLayoutItem.h" | 42 #include "core/layout/api/LineLayoutItem.h" |
| 43 #include "core/layout/line/LineBoxList.h" | 43 #include "core/layout/line/LineBoxList.h" |
| 44 #include "core/layout/line/RootInlineBox.h" | 44 #include "core/layout/line/RootInlineBox.h" |
| 45 #include "core/layout/line/TrailingObjects.h" | 45 #include "core/layout/line/TrailingObjects.h" |
| 46 #include "core/style/ComputedStyleConstants.h" | |
| 47 | 46 |
| 48 namespace blink { | 47 namespace blink { |
| 49 | 48 |
| 50 class BlockChildrenLayoutInfo; | 49 class BlockChildrenLayoutInfo; |
| 51 class ClipScope; | 50 class ClipScope; |
| 52 class MarginInfo; | 51 class MarginInfo; |
| 53 class LayoutInline; | 52 class LayoutInline; |
| 54 class LineBreaker; | |
| 55 class LineInfo; | 53 class LineInfo; |
| 56 class LineLayoutState; | 54 class LineLayoutState; |
| 57 class LineWidth; | 55 class LineWidth; |
| 58 class LayoutMultiColumnFlowThread; | 56 class LayoutMultiColumnFlowThread; |
| 59 class LayoutMultiColumnSpannerPlaceholder; | 57 class LayoutMultiColumnSpannerPlaceholder; |
| 60 class LayoutRubyRun; | 58 class LayoutRubyRun; |
| 61 template <class Run> class BidiRunList; | 59 template <class Run> class BidiRunList; |
| 62 | 60 |
| 63 enum IndentTextOrNot { DoNotIndentText, IndentText }; | 61 enum IndentTextOrNot { DoNotIndentText, IndentText }; |
| 64 | 62 |
| (...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 671 | 669 |
| 672 // END METHODS DEFINED IN LayoutBlockFlowLine | 670 // END METHODS DEFINED IN LayoutBlockFlowLine |
| 673 | 671 |
| 674 }; | 672 }; |
| 675 | 673 |
| 676 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlockFlow, isLayoutBlockFlow()); | 674 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlockFlow, isLayoutBlockFlow()); |
| 677 | 675 |
| 678 } // namespace blink | 676 } // namespace blink |
| 679 | 677 |
| 680 #endif // LayoutBlockFlow_h | 678 #endif // LayoutBlockFlow_h |
| OLD | NEW |