OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 18 matching lines...) Expand all Loading... |
29 #include "core/rendering/ColumnInfo.h" | 29 #include "core/rendering/ColumnInfo.h" |
30 #include "platform/geometry/LayoutRect.h" | 30 #include "platform/geometry/LayoutRect.h" |
31 #include "wtf/HashMap.h" | 31 #include "wtf/HashMap.h" |
32 #include "wtf/Noncopyable.h" | 32 #include "wtf/Noncopyable.h" |
33 | 33 |
34 namespace WebCore { | 34 namespace WebCore { |
35 | 35 |
36 class RenderBlockFlow; | 36 class RenderBlockFlow; |
37 class RenderBox; | 37 class RenderBox; |
38 class RenderObject; | 38 class RenderObject; |
39 class RenderFlowThread; | |
40 class ShapeInsideInfo; | 39 class ShapeInsideInfo; |
41 | 40 |
42 class LayoutState { | 41 class LayoutState { |
43 WTF_MAKE_NONCOPYABLE(LayoutState); | 42 WTF_MAKE_NONCOPYABLE(LayoutState); |
44 public: | 43 public: |
45 LayoutState() | 44 LayoutState() |
46 : m_clipped(false) | 45 : m_clipped(false) |
47 , m_isPaginated(false) | 46 , m_isPaginated(false) |
48 , m_pageLogicalHeightChanged(false) | 47 , m_pageLogicalHeightChanged(false) |
49 #if !ASSERT_DISABLED | 48 #if !ASSERT_DISABLED |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 LayoutSize m_lineGridPaginationOrigin; | 137 LayoutSize m_lineGridPaginationOrigin; |
139 | 138 |
140 #ifndef NDEBUG | 139 #ifndef NDEBUG |
141 RenderObject* m_renderer; | 140 RenderObject* m_renderer; |
142 #endif | 141 #endif |
143 }; | 142 }; |
144 | 143 |
145 } // namespace WebCore | 144 } // namespace WebCore |
146 | 145 |
147 #endif // LayoutState_h | 146 #endif // LayoutState_h |
OLD | NEW |