| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 LayoutState rootLayoutState(*this); | 144 LayoutState rootLayoutState(*this); |
| 145 | 145 |
| 146 layoutContent(); | 146 layoutContent(); |
| 147 | 147 |
| 148 #if ENABLE(ASSERT) | 148 #if ENABLE(ASSERT) |
| 149 checkLayoutState(); | 149 checkLayoutState(); |
| 150 #endif | 150 #endif |
| 151 clearNeedsLayout(); | 151 clearNeedsLayout(); |
| 152 } | 152 } |
| 153 | 153 |
| 154 void RenderView::mapLocalToContainer(const RenderLayerModelObject* paintInvalida
tionContainer, TransformState& transformState, MapCoordinatesFlags mode, const P
aintInvalidationState* paintInvalidationState) const | 154 void RenderView::mapLocalToContainer(const RenderLayerModelObject* paintInvalida
tionContainer, TransformState& transformState, MapCoordinatesFlags mode) const |
| 155 { | 155 { |
| 156 if (!paintInvalidationContainer && mode & UseTransforms && shouldUseTransfor
mFromContainer(0)) { | 156 if (!paintInvalidationContainer && mode & UseTransforms && shouldUseTransfor
mFromContainer(0)) { |
| 157 TransformationMatrix t; | 157 TransformationMatrix t; |
| 158 getTransformFromContainer(0, LayoutSize(), t); | 158 getTransformFromContainer(0, LayoutSize(), t); |
| 159 transformState.applyTransform(t); | 159 transformState.applyTransform(t); |
| 160 } | 160 } |
| 161 } | 161 } |
| 162 | 162 |
| 163 const RenderObject* RenderView::pushMappingToContainer(const RenderLayerModelObj
ect* ancestorToStopAt, RenderGeometryMap& geometryMap) const | 163 const RenderObject* RenderView::pushMappingToContainer(const RenderLayerModelObj
ect* ancestorToStopAt, RenderGeometryMap& geometryMap) const |
| 164 { | 164 { |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 481 m_iframes.remove(iframe); | 481 m_iframes.remove(iframe); |
| 482 } | 482 } |
| 483 | 483 |
| 484 void RenderView::updateIFramesAfterLayout() | 484 void RenderView::updateIFramesAfterLayout() |
| 485 { | 485 { |
| 486 for (auto& iframe: m_iframes) | 486 for (auto& iframe: m_iframes) |
| 487 iframe->updateWidgetBounds(); | 487 iframe->updateWidgetBounds(); |
| 488 } | 488 } |
| 489 | 489 |
| 490 } // namespace blink | 490 } // namespace blink |
| OLD | NEW |