| 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) 2005 Allan Sandfeld Jensen (kde@carewolf.com) | 4 * (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com) |
| 5 * (C) 2005, 2006 Samuel Weinig (sam.weinig@gmail.com) | 5 * (C) 2005, 2006 Samuel Weinig (sam.weinig@gmail.com) |
| 6 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. | 6 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. |
| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 #include "RenderFlowThread.h" | 45 #include "RenderFlowThread.h" |
| 46 #include "RenderGeometryMap.h" | 46 #include "RenderGeometryMap.h" |
| 47 #include "RenderInline.h" | 47 #include "RenderInline.h" |
| 48 #include "RenderLayer.h" | 48 #include "RenderLayer.h" |
| 49 #include "RenderLayerCompositor.h" | 49 #include "RenderLayerCompositor.h" |
| 50 #include "RenderPart.h" | 50 #include "RenderPart.h" |
| 51 #include "RenderRegion.h" | 51 #include "RenderRegion.h" |
| 52 #include "RenderTableCell.h" | 52 #include "RenderTableCell.h" |
| 53 #include "RenderTheme.h" | 53 #include "RenderTheme.h" |
| 54 #include "RenderView.h" | 54 #include "RenderView.h" |
| 55 #include "ScrollbarTheme.h" | |
| 56 #include "WebCoreMemoryInstrumentation.h" | 55 #include "WebCoreMemoryInstrumentation.h" |
| 56 #include "core/platform/ScrollbarTheme.h" |
| 57 #include "core/platform/graphics/FloatQuad.h" | 57 #include "core/platform/graphics/FloatQuad.h" |
| 58 #include "core/platform/graphics/GraphicsContext.h" | 58 #include "core/platform/graphics/GraphicsContext.h" |
| 59 #include "core/platform/graphics/ImageBuffer.h" | 59 #include "core/platform/graphics/ImageBuffer.h" |
| 60 #include "core/platform/graphics/transforms/TransformState.h" | 60 #include "core/platform/graphics/transforms/TransformState.h" |
| 61 #include "htmlediting.h" | 61 #include "htmlediting.h" |
| 62 #include <wtf/MemoryInstrumentationHashMap.h> | 62 #include <wtf/MemoryInstrumentationHashMap.h> |
| 63 | 63 |
| 64 using namespace std; | 64 using namespace std; |
| 65 | 65 |
| 66 namespace WTF { | 66 namespace WTF { |
| (...skipping 4520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4587 | 4587 |
| 4588 void RenderBox::reportStaticMembersMemoryUsage(MemoryInstrumentation* memoryInst
rumentation) | 4588 void RenderBox::reportStaticMembersMemoryUsage(MemoryInstrumentation* memoryInst
rumentation) |
| 4589 { | 4589 { |
| 4590 memoryInstrumentation->addRootObject(gOverrideHeightMap, WebCoreMemoryTypes:
:RenderingStructures); | 4590 memoryInstrumentation->addRootObject(gOverrideHeightMap, WebCoreMemoryTypes:
:RenderingStructures); |
| 4591 memoryInstrumentation->addRootObject(gOverrideWidthMap, WebCoreMemoryTypes::
RenderingStructures); | 4591 memoryInstrumentation->addRootObject(gOverrideWidthMap, WebCoreMemoryTypes::
RenderingStructures); |
| 4592 memoryInstrumentation->addRootObject(gOverrideContainingBlockLogicalHeightMa
p, WebCoreMemoryTypes::RenderingStructures); | 4592 memoryInstrumentation->addRootObject(gOverrideContainingBlockLogicalHeightMa
p, WebCoreMemoryTypes::RenderingStructures); |
| 4593 memoryInstrumentation->addRootObject(gOverrideContainingBlockLogicalWidthMap
, WebCoreMemoryTypes::RenderingStructures); | 4593 memoryInstrumentation->addRootObject(gOverrideContainingBlockLogicalWidthMap
, WebCoreMemoryTypes::RenderingStructures); |
| 4594 } | 4594 } |
| 4595 | 4595 |
| 4596 } // namespace WebCore | 4596 } // namespace WebCore |
| OLD | NEW |