| 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 * (C) 2007 David Smith (catfish.man@gmail.com) | 4 * (C) 2007 David Smith (catfish.man@gmail.com) |
| 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
All rights reserved. | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
All rights reserved. |
| 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 #include "RenderInline.h" | 49 #include "RenderInline.h" |
| 50 #include "RenderLayer.h" | 50 #include "RenderLayer.h" |
| 51 #include "RenderMarquee.h" | 51 #include "RenderMarquee.h" |
| 52 #include "RenderNamedFlowThread.h" | 52 #include "RenderNamedFlowThread.h" |
| 53 #include "RenderRegion.h" | 53 #include "RenderRegion.h" |
| 54 #include "RenderReplica.h" | 54 #include "RenderReplica.h" |
| 55 #include "RenderTableCell.h" | 55 #include "RenderTableCell.h" |
| 56 #include "RenderTextFragment.h" | 56 #include "RenderTextFragment.h" |
| 57 #include "RenderTheme.h" | 57 #include "RenderTheme.h" |
| 58 #include "RenderView.h" | 58 #include "RenderView.h" |
| 59 #include "SVGTextRunRenderingContext.h" | |
| 60 #include "Settings.h" | 59 #include "Settings.h" |
| 61 #include "ShadowRoot.h" | 60 #include "ShadowRoot.h" |
| 62 #include "WebCoreMemoryInstrumentation.h" | 61 #include "WebCoreMemoryInstrumentation.h" |
| 63 #include "core/accessibility/AXObjectCache.h" | 62 #include "core/accessibility/AXObjectCache.h" |
| 64 #include "core/platform/PODFreeListArena.h" | 63 #include "core/platform/PODFreeListArena.h" |
| 65 #include "core/platform/graphics/FloatQuad.h" | 64 #include "core/platform/graphics/FloatQuad.h" |
| 66 #include "core/platform/graphics/GraphicsContext.h" | 65 #include "core/platform/graphics/GraphicsContext.h" |
| 67 #include "core/platform/graphics/transforms/TransformState.h" | 66 #include "core/platform/graphics/transforms/TransformState.h" |
| 67 #include "core/rendering/svg/SVGTextRunRenderingContext.h" |
| 68 #include <wtf/StdLibExtras.h> | 68 #include <wtf/StdLibExtras.h> |
| 69 #if ENABLE(CSS_EXCLUSIONS) | 69 #if ENABLE(CSS_EXCLUSIONS) |
| 70 #include "ExclusionShapeInsideInfo.h" | 70 #include "ExclusionShapeInsideInfo.h" |
| 71 #include "ExclusionShapeOutsideInfo.h" | 71 #include "ExclusionShapeOutsideInfo.h" |
| 72 #endif | 72 #endif |
| 73 #include <wtf/MemoryInstrumentationHashMap.h> | 73 #include <wtf/MemoryInstrumentationHashMap.h> |
| 74 #include <wtf/MemoryInstrumentationHashSet.h> | 74 #include <wtf/MemoryInstrumentationHashSet.h> |
| 75 #include <wtf/MemoryInstrumentationListHashSet.h> | 75 #include <wtf/MemoryInstrumentationListHashSet.h> |
| 76 #include <wtf/TemporaryChange.h> | 76 #include <wtf/TemporaryChange.h> |
| 77 | 77 |
| (...skipping 8036 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8114 { | 8114 { |
| 8115 memoryInstrumentation->addRootObject(gColumnInfoMap, WebCoreMemoryTypes::Ren
deringStructures); | 8115 memoryInstrumentation->addRootObject(gColumnInfoMap, WebCoreMemoryTypes::Ren
deringStructures); |
| 8116 memoryInstrumentation->addRootObject(gPositionedDescendantsMap, WebCoreMemor
yTypes::RenderingStructures); | 8116 memoryInstrumentation->addRootObject(gPositionedDescendantsMap, WebCoreMemor
yTypes::RenderingStructures); |
| 8117 memoryInstrumentation->addRootObject(gPercentHeightDescendantsMap, WebCoreMe
moryTypes::RenderingStructures); | 8117 memoryInstrumentation->addRootObject(gPercentHeightDescendantsMap, WebCoreMe
moryTypes::RenderingStructures); |
| 8118 memoryInstrumentation->addRootObject(gPositionedContainerMap, WebCoreMemoryT
ypes::RenderingStructures); | 8118 memoryInstrumentation->addRootObject(gPositionedContainerMap, WebCoreMemoryT
ypes::RenderingStructures); |
| 8119 memoryInstrumentation->addRootObject(gPercentHeightContainerMap, WebCoreMemo
ryTypes::RenderingStructures); | 8119 memoryInstrumentation->addRootObject(gPercentHeightContainerMap, WebCoreMemo
ryTypes::RenderingStructures); |
| 8120 memoryInstrumentation->addRootObject(gDelayedUpdateScrollInfoSet, WebCoreMem
oryTypes::RenderingStructures); | 8120 memoryInstrumentation->addRootObject(gDelayedUpdateScrollInfoSet, WebCoreMem
oryTypes::RenderingStructures); |
| 8121 } | 8121 } |
| 8122 | 8122 |
| 8123 } // namespace WebCore | 8123 } // namespace WebCore |
| OLD | NEW |