OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. | 2 * Copyright (C) 2011 Adobe Systems Incorporated. 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 * | 7 * |
8 * 1. Redistributions of source code must retain the above | 8 * 1. Redistributions of source code must retain the above |
9 * copyright notice, this list of conditions and the following | 9 * copyright notice, this list of conditions and the following |
10 * disclaimer. | 10 * disclaimer. |
(...skipping 17 matching lines...) Expand all Loading... |
28 */ | 28 */ |
29 | 29 |
30 #include "config.h" | 30 #include "config.h" |
31 | 31 |
32 #include "RenderFlowThread.h" | 32 #include "RenderFlowThread.h" |
33 | 33 |
34 #include "FlowThreadController.h" | 34 #include "FlowThreadController.h" |
35 #include "HitTestRequest.h" | 35 #include "HitTestRequest.h" |
36 #include "HitTestResult.h" | 36 #include "HitTestResult.h" |
37 #include "Node.h" | 37 #include "Node.h" |
38 #include "PODIntervalTree.h" | |
39 #include "PaintInfo.h" | 38 #include "PaintInfo.h" |
40 #include "RenderBoxRegionInfo.h" | 39 #include "RenderBoxRegionInfo.h" |
41 #include "RenderLayer.h" | 40 #include "RenderLayer.h" |
42 #include "RenderRegion.h" | 41 #include "RenderRegion.h" |
43 #include "RenderView.h" | 42 #include "RenderView.h" |
| 43 #include "core/platform/PODIntervalTree.h" |
44 #include "core/platform/graphics/transforms/TransformState.h" | 44 #include "core/platform/graphics/transforms/TransformState.h" |
45 | 45 |
46 namespace WebCore { | 46 namespace WebCore { |
47 | 47 |
48 RenderFlowThread::RenderFlowThread() | 48 RenderFlowThread::RenderFlowThread() |
49 : RenderBlock(0) | 49 : RenderBlock(0) |
50 , m_autoLogicalHeightRegionsCount(0) | 50 , m_autoLogicalHeightRegionsCount(0) |
51 , m_regionsInvalidated(false) | 51 , m_regionsInvalidated(false) |
52 , m_regionsHaveUniformLogicalWidth(true) | 52 , m_regionsHaveUniformLogicalWidth(true) |
53 , m_regionsHaveUniformLogicalHeight(true) | 53 , m_regionsHaveUniformLogicalHeight(true) |
(...skipping 928 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
982 { | 982 { |
983 if (!m_renderFlowThread) | 983 if (!m_renderFlowThread) |
984 return; | 984 return; |
985 RenderView* view = m_renderFlowThread->view(); | 985 RenderView* view = m_renderFlowThread->view(); |
986 ASSERT(view->flowThreadController()->currentRenderFlowThread() == m_renderFl
owThread); | 986 ASSERT(view->flowThreadController()->currentRenderFlowThread() == m_renderFl
owThread); |
987 view->flowThreadController()->setCurrentRenderFlowThread(m_previousRenderFlo
wThread); | 987 view->flowThreadController()->setCurrentRenderFlowThread(m_previousRenderFlo
wThread); |
988 } | 988 } |
989 | 989 |
990 | 990 |
991 } // namespace WebCore | 991 } // namespace WebCore |
OLD | NEW |