| 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 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
reserved. | 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "core/dom/Fullscreen.h" | 26 #include "core/dom/Fullscreen.h" |
| 27 #include "core/dom/StyleEngine.h" | 27 #include "core/dom/StyleEngine.h" |
| 28 #include "core/layout/HitTestResult.h" | 28 #include "core/layout/HitTestResult.h" |
| 29 #include "core/layout/LayoutBlock.h" | 29 #include "core/layout/LayoutBlock.h" |
| 30 #include "core/layout/LayoutFlowThread.h" | 30 #include "core/layout/LayoutFlowThread.h" |
| 31 #include "core/layout/LayoutFullScreen.h" | 31 #include "core/layout/LayoutFullScreen.h" |
| 32 #include "core/layout/LayoutGeometryMap.h" | 32 #include "core/layout/LayoutGeometryMap.h" |
| 33 #include "core/layout/LayoutTheme.h" | 33 #include "core/layout/LayoutTheme.h" |
| 34 #include "core/layout/LayoutView.h" | 34 #include "core/layout/LayoutView.h" |
| 35 #include "core/layout/line/InlineTextBox.h" | 35 #include "core/layout/line/InlineTextBox.h" |
| 36 #include "core/style/StyleInheritedData.h" | |
| 37 #include "core/paint/BoxPainter.h" | 36 #include "core/paint/BoxPainter.h" |
| 38 #include "core/paint/DeprecatedPaintLayer.h" | 37 #include "core/paint/DeprecatedPaintLayer.h" |
| 39 #include "core/paint/InlinePainter.h" | 38 #include "core/paint/InlinePainter.h" |
| 40 #include "core/paint/ObjectPainter.h" | 39 #include "core/paint/ObjectPainter.h" |
| 40 #include "core/style/StyleInheritedData.h" |
| 41 #include "platform/geometry/FloatQuad.h" | 41 #include "platform/geometry/FloatQuad.h" |
| 42 #include "platform/geometry/Region.h" | 42 #include "platform/geometry/Region.h" |
| 43 #include "platform/geometry/TransformState.h" | 43 #include "platform/geometry/TransformState.h" |
| 44 | 44 |
| 45 namespace blink { | 45 namespace blink { |
| 46 | 46 |
| 47 struct SameSizeAsLayoutInline : public LayoutBoxModelObject { | 47 struct SameSizeAsLayoutInline : public LayoutBoxModelObject { |
| 48 virtual ~SameSizeAsLayoutInline() { } | 48 virtual ~SameSizeAsLayoutInline() { } |
| 49 LayoutObjectChildList m_children; | 49 LayoutObjectChildList m_children; |
| 50 LineBoxList m_lineBoxes; | 50 LineBoxList m_lineBoxes; |
| (...skipping 1377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1428 } | 1428 } |
| 1429 | 1429 |
| 1430 void LayoutInline::invalidateDisplayItemClients(const LayoutBoxModelObject& pain
tInvalidationContainer) const | 1430 void LayoutInline::invalidateDisplayItemClients(const LayoutBoxModelObject& pain
tInvalidationContainer) const |
| 1431 { | 1431 { |
| 1432 LayoutBoxModelObject::invalidateDisplayItemClients(paintInvalidationContaine
r); | 1432 LayoutBoxModelObject::invalidateDisplayItemClients(paintInvalidationContaine
r); |
| 1433 for (InlineFlowBox* box = firstLineBox(); box; box = box->nextLineBox()) | 1433 for (InlineFlowBox* box = firstLineBox(); box; box = box->nextLineBox()) |
| 1434 paintInvalidationContainer.invalidateDisplayItemClientOnBacking(*box); | 1434 paintInvalidationContainer.invalidateDisplayItemClientOnBacking(*box); |
| 1435 } | 1435 } |
| 1436 | 1436 |
| 1437 } // namespace blink | 1437 } // namespace blink |
| OLD | NEW |