| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 #include "Page.h" | 33 #include "Page.h" |
| 34 #include "RenderGeometryMap.h" | 34 #include "RenderGeometryMap.h" |
| 35 #include "RenderLayer.h" | 35 #include "RenderLayer.h" |
| 36 #include "RenderLayerBacking.h" | 36 #include "RenderLayerBacking.h" |
| 37 #include "RenderLayerCompositor.h" | 37 #include "RenderLayerCompositor.h" |
| 38 #include "RenderNamedFlowThread.h" | 38 #include "RenderNamedFlowThread.h" |
| 39 #include "RenderSelectionInfo.h" | 39 #include "RenderSelectionInfo.h" |
| 40 #include "RenderWidget.h" | 40 #include "RenderWidget.h" |
| 41 #include "RenderWidgetProtector.h" | 41 #include "RenderWidgetProtector.h" |
| 42 #include "StyleInheritedData.h" | 42 #include "StyleInheritedData.h" |
| 43 #include "TransformState.h" | |
| 44 #include "WebCoreMemoryInstrumentation.h" | 43 #include "WebCoreMemoryInstrumentation.h" |
| 45 #include "core/platform/graphics/FloatQuad.h" | 44 #include "core/platform/graphics/FloatQuad.h" |
| 46 #include "core/platform/graphics/GraphicsContext.h" | 45 #include "core/platform/graphics/GraphicsContext.h" |
| 46 #include "core/platform/graphics/transforms/TransformState.h" |
| 47 | 47 |
| 48 #if USE(3D_GRAPHICS) | 48 #if USE(3D_GRAPHICS) |
| 49 #include "CustomFilterGlobalContext.h" | 49 #include "core/platform/graphics/filters/custom/CustomFilterGlobalContext.h" |
| 50 #endif | 50 #endif |
| 51 | 51 |
| 52 namespace WebCore { | 52 namespace WebCore { |
| 53 | 53 |
| 54 RenderView::RenderView(Document* document) | 54 RenderView::RenderView(Document* document) |
| 55 : RenderBlock(document) | 55 : RenderBlock(document) |
| 56 , m_frameView(document->view()) | 56 , m_frameView(document->view()) |
| 57 , m_selectionStart(0) | 57 , m_selectionStart(0) |
| 58 , m_selectionEnd(0) | 58 , m_selectionEnd(0) |
| 59 , m_selectionStartPos(-1) | 59 , m_selectionStartPos(-1) |
| (...skipping 1106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1166 #endif | 1166 #endif |
| 1167 | 1167 |
| 1168 if (layoutState) | 1168 if (layoutState) |
| 1169 layoutState->m_isPaginated = m_fragmenting; | 1169 layoutState->m_isPaginated = m_fragmenting; |
| 1170 | 1170 |
| 1171 if (m_flowThreadState != RenderObject::NotInsideFlowThread) | 1171 if (m_flowThreadState != RenderObject::NotInsideFlowThread) |
| 1172 m_root->setFlowThreadStateIncludingDescendants(m_flowThreadState); | 1172 m_root->setFlowThreadStateIncludingDescendants(m_flowThreadState); |
| 1173 } | 1173 } |
| 1174 | 1174 |
| 1175 } // namespace WebCore | 1175 } // namespace WebCore |
| OLD | NEW |