| OLD | NEW |
| 1 /* | 1 /* |
| 2 * (C) 1999 Lars Knoll (knoll@kde.org) | 2 * (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Dirk Mueller (mueller@kde.org) | 3 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights 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 23 matching lines...) Expand all Loading... |
| 34 #include "Page.h" | 34 #include "Page.h" |
| 35 #include "PaintInfo.h" | 35 #include "PaintInfo.h" |
| 36 #include "RenderArena.h" | 36 #include "RenderArena.h" |
| 37 #include "RenderBR.h" | 37 #include "RenderBR.h" |
| 38 #include "RenderBlock.h" | 38 #include "RenderBlock.h" |
| 39 #include "RenderCombineText.h" | 39 #include "RenderCombineText.h" |
| 40 #include "RenderRubyRun.h" | 40 #include "RenderRubyRun.h" |
| 41 #include "RenderRubyText.h" | 41 #include "RenderRubyText.h" |
| 42 #include "RenderTheme.h" | 42 #include "RenderTheme.h" |
| 43 #include "RenderedDocumentMarker.h" | 43 #include "RenderedDocumentMarker.h" |
| 44 #include "SVGTextRunRenderingContext.h" | |
| 45 #include "Settings.h" | 44 #include "Settings.h" |
| 46 #include "Text.h" | 45 #include "Text.h" |
| 47 #include "WebCoreMemoryInstrumentation.h" | 46 #include "WebCoreMemoryInstrumentation.h" |
| 48 #include "break_lines.h" | 47 #include "break_lines.h" |
| 49 #include "core/platform/graphics/FontCache.h" | 48 #include "core/platform/graphics/FontCache.h" |
| 50 #include "core/platform/graphics/GraphicsContext.h" | 49 #include "core/platform/graphics/GraphicsContext.h" |
| 50 #include "core/rendering/svg/SVGTextRunRenderingContext.h" |
| 51 #include <wtf/text/CString.h> | 51 #include <wtf/text/CString.h> |
| 52 | 52 |
| 53 using namespace std; | 53 using namespace std; |
| 54 | 54 |
| 55 namespace WebCore { | 55 namespace WebCore { |
| 56 | 56 |
| 57 typedef WTF::HashMap<const InlineTextBox*, LayoutRect> InlineTextBoxOverflowMap; | 57 typedef WTF::HashMap<const InlineTextBox*, LayoutRect> InlineTextBoxOverflowMap; |
| 58 static InlineTextBoxOverflowMap* gTextBoxesWithOverflow; | 58 static InlineTextBoxOverflowMap* gTextBoxesWithOverflow; |
| 59 | 59 |
| 60 void InlineTextBox::destroy(RenderArena* arena) | 60 void InlineTextBox::destroy(RenderArena* arena) |
| (...skipping 1568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1629 | 1629 |
| 1630 void InlineTextBox::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const | 1630 void InlineTextBox::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
| 1631 { | 1631 { |
| 1632 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::Rendering); | 1632 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::Rendering); |
| 1633 InlineBox::reportMemoryUsage(memoryObjectInfo); | 1633 InlineBox::reportMemoryUsage(memoryObjectInfo); |
| 1634 info.addMember(m_prevTextBox, "prevTextBox"); | 1634 info.addMember(m_prevTextBox, "prevTextBox"); |
| 1635 info.addMember(m_nextTextBox, "nextTextBox"); | 1635 info.addMember(m_nextTextBox, "nextTextBox"); |
| 1636 } | 1636 } |
| 1637 | 1637 |
| 1638 } // namespace WebCore | 1638 } // namespace WebCore |
| OLD | NEW |