| 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 21 matching lines...) Expand all Loading... |
| 32 #include "core/dom/WebCoreMemoryInstrumentation.h" | 32 #include "core/dom/WebCoreMemoryInstrumentation.h" |
| 33 #include "core/dom/shadow/ShadowRoot.h" | 33 #include "core/dom/shadow/ShadowRoot.h" |
| 34 #include "core/editing/Editor.h" | 34 #include "core/editing/Editor.h" |
| 35 #include "core/editing/FrameSelection.h" | 35 #include "core/editing/FrameSelection.h" |
| 36 #include "core/page/Frame.h" | 36 #include "core/page/Frame.h" |
| 37 #include "core/page/FrameView.h" | 37 #include "core/page/FrameView.h" |
| 38 #include "core/page/Page.h" | 38 #include "core/page/Page.h" |
| 39 #include "core/page/Settings.h" | 39 #include "core/page/Settings.h" |
| 40 #include "core/platform/PODFreeListArena.h" | 40 #include "core/platform/PODFreeListArena.h" |
| 41 #include "core/platform/graphics/FloatQuad.h" | 41 #include "core/platform/graphics/FloatQuad.h" |
| 42 #include "core/platform/graphics/GraphicsContextAnnotation.h" |
| 42 #include "core/platform/graphics/GraphicsContextStateSaver.h" | 43 #include "core/platform/graphics/GraphicsContextStateSaver.h" |
| 43 #include "core/platform/graphics/transforms/TransformState.h" | 44 #include "core/platform/graphics/transforms/TransformState.h" |
| 44 #include "core/rendering/ColumnInfo.h" | 45 #include "core/rendering/ColumnInfo.h" |
| 45 #include "core/rendering/HitTestLocation.h" | 46 #include "core/rendering/HitTestLocation.h" |
| 46 #include "core/rendering/HitTestResult.h" | 47 #include "core/rendering/HitTestResult.h" |
| 47 #include "core/rendering/InlineIterator.h" | 48 #include "core/rendering/InlineIterator.h" |
| 48 #include "core/rendering/InlineTextBox.h" | 49 #include "core/rendering/InlineTextBox.h" |
| 49 #include "core/rendering/LayoutRepainter.h" | 50 #include "core/rendering/LayoutRepainter.h" |
| 50 #include "core/rendering/PaintInfo.h" | 51 #include "core/rendering/PaintInfo.h" |
| 51 #include "core/rendering/RenderCombineText.h" | 52 #include "core/rendering/RenderCombineText.h" |
| (...skipping 8096 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8148 { | 8149 { |
| 8149 memoryInstrumentation->addRootObject(gColumnInfoMap, WebCoreMemoryTypes::Ren
deringStructures); | 8150 memoryInstrumentation->addRootObject(gColumnInfoMap, WebCoreMemoryTypes::Ren
deringStructures); |
| 8150 memoryInstrumentation->addRootObject(gPositionedDescendantsMap, WebCoreMemor
yTypes::RenderingStructures); | 8151 memoryInstrumentation->addRootObject(gPositionedDescendantsMap, WebCoreMemor
yTypes::RenderingStructures); |
| 8151 memoryInstrumentation->addRootObject(gPercentHeightDescendantsMap, WebCoreMe
moryTypes::RenderingStructures); | 8152 memoryInstrumentation->addRootObject(gPercentHeightDescendantsMap, WebCoreMe
moryTypes::RenderingStructures); |
| 8152 memoryInstrumentation->addRootObject(gPositionedContainerMap, WebCoreMemoryT
ypes::RenderingStructures); | 8153 memoryInstrumentation->addRootObject(gPositionedContainerMap, WebCoreMemoryT
ypes::RenderingStructures); |
| 8153 memoryInstrumentation->addRootObject(gPercentHeightContainerMap, WebCoreMemo
ryTypes::RenderingStructures); | 8154 memoryInstrumentation->addRootObject(gPercentHeightContainerMap, WebCoreMemo
ryTypes::RenderingStructures); |
| 8154 memoryInstrumentation->addRootObject(gDelayedUpdateScrollInfoSet, WebCoreMem
oryTypes::RenderingStructures); | 8155 memoryInstrumentation->addRootObject(gDelayedUpdateScrollInfoSet, WebCoreMem
oryTypes::RenderingStructures); |
| 8155 } | 8156 } |
| 8156 | 8157 |
| 8157 } // namespace WebCore | 8158 } // namespace WebCore |
| OLD | NEW |