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 22 matching lines...) Expand all Loading... |
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
34 */ | 34 */ |
35 | 35 |
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/line/TrailingObjects.h" | 42 #include "core/layout/line/TrailingObjects.h" |
43 #include "core/layout/style/ComputedStyleConstants.h" | 43 #include "core/style/ComputedStyleConstants.h" |
44 | 44 |
45 namespace blink { | 45 namespace blink { |
46 | 46 |
47 class MarginInfo; | 47 class MarginInfo; |
48 class LineBreaker; | 48 class LineBreaker; |
49 class LineInfo; | 49 class LineInfo; |
50 class LineWidth; | 50 class LineWidth; |
51 class LayoutMultiColumnFlowThread; | 51 class LayoutMultiColumnFlowThread; |
52 class LayoutMultiColumnSpannerPlaceholder; | 52 class LayoutMultiColumnSpannerPlaceholder; |
53 class LayoutRubyRun; | 53 class LayoutRubyRun; |
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
536 | 536 |
537 // END METHODS DEFINED IN LayoutBlockFlowLine | 537 // END METHODS DEFINED IN LayoutBlockFlowLine |
538 | 538 |
539 }; | 539 }; |
540 | 540 |
541 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlockFlow, isLayoutBlockFlow()); | 541 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlockFlow, isLayoutBlockFlow()); |
542 | 542 |
543 } // namespace blink | 543 } // namespace blink |
544 | 544 |
545 #endif // LayoutBlockFlow_h | 545 #endif // LayoutBlockFlow_h |
OLD | NEW |