| 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 18 matching lines...) Expand all Loading... |
| 29 #include "InlineTextBox.h" | 29 #include "InlineTextBox.h" |
| 30 #include "Page.h" | 30 #include "Page.h" |
| 31 #include "RenderArena.h" | 31 #include "RenderArena.h" |
| 32 #include "RenderBlock.h" | 32 #include "RenderBlock.h" |
| 33 #include "RenderFlowThread.h" | 33 #include "RenderFlowThread.h" |
| 34 #include "RenderGeometryMap.h" | 34 #include "RenderGeometryMap.h" |
| 35 #include "RenderLayer.h" | 35 #include "RenderLayer.h" |
| 36 #include "RenderTheme.h" | 36 #include "RenderTheme.h" |
| 37 #include "RenderView.h" | 37 #include "RenderView.h" |
| 38 #include "StyleInheritedData.h" | 38 #include "StyleInheritedData.h" |
| 39 #include "TransformState.h" | |
| 40 #include "VisiblePosition.h" | 39 #include "VisiblePosition.h" |
| 41 #include "WebCoreMemoryInstrumentation.h" | 40 #include "WebCoreMemoryInstrumentation.h" |
| 42 #include "core/platform/graphics/FloatQuad.h" | 41 #include "core/platform/graphics/FloatQuad.h" |
| 43 #include "core/platform/graphics/GraphicsContext.h" | 42 #include "core/platform/graphics/GraphicsContext.h" |
| 43 #include "core/platform/graphics/transforms/TransformState.h" |
| 44 | 44 |
| 45 using namespace std; | 45 using namespace std; |
| 46 | 46 |
| 47 namespace WebCore { | 47 namespace WebCore { |
| 48 | 48 |
| 49 RenderInline::RenderInline(Element* element) | 49 RenderInline::RenderInline(Element* element) |
| 50 : RenderBoxModelObject(element) | 50 : RenderBoxModelObject(element) |
| 51 , m_alwaysCreateLineBoxes(false) | 51 , m_alwaysCreateLineBoxes(false) |
| 52 { | 52 { |
| 53 setChildrenInline(true); | 53 setChildrenInline(true); |
| (...skipping 1525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1579 | 1579 |
| 1580 void RenderInline::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const | 1580 void RenderInline::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
| 1581 { | 1581 { |
| 1582 MemoryClassInfo info(memoryObjectInfo, this, PlatformMemoryTypes::Rendering)
; | 1582 MemoryClassInfo info(memoryObjectInfo, this, PlatformMemoryTypes::Rendering)
; |
| 1583 RenderBoxModelObject::reportMemoryUsage(memoryObjectInfo); | 1583 RenderBoxModelObject::reportMemoryUsage(memoryObjectInfo); |
| 1584 info.addMember(m_children, "children"); | 1584 info.addMember(m_children, "children"); |
| 1585 info.addMember(m_lineBoxes, "lineBoxes"); | 1585 info.addMember(m_lineBoxes, "lineBoxes"); |
| 1586 } | 1586 } |
| 1587 | 1587 |
| 1588 } // namespace WebCore | 1588 } // namespace WebCore |
| OLD | NEW |