OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009, 2010, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009, 2010, 2011 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 17 matching lines...) Expand all Loading... |
28 #include "core/rendering/RenderLayerBacking.h" | 28 #include "core/rendering/RenderLayerBacking.h" |
29 | 29 |
30 #include "CSSPropertyNames.h" | 30 #include "CSSPropertyNames.h" |
31 #include "CanvasRenderingContext.h" | 31 #include "CanvasRenderingContext.h" |
32 #include "HTMLCanvasElement.h" | 32 #include "HTMLCanvasElement.h" |
33 #include "HTMLIFrameElement.h" | 33 #include "HTMLIFrameElement.h" |
34 #include "HTMLMediaElement.h" | 34 #include "HTMLMediaElement.h" |
35 #include "HTMLNames.h" | 35 #include "HTMLNames.h" |
36 #include "InspectorInstrumentation.h" | 36 #include "InspectorInstrumentation.h" |
37 #include "PluginViewBase.h" | 37 #include "PluginViewBase.h" |
38 #include "WebCoreMemoryInstrumentation.h" | |
39 #include "core/css/StyleResolver.h" | 38 #include "core/css/StyleResolver.h" |
| 39 #include "core/dom/WebCoreMemoryInstrumentation.h" |
40 #include "core/loader/cache/CachedImage.h" | 40 #include "core/loader/cache/CachedImage.h" |
41 #include "core/page/Chrome.h" | 41 #include "core/page/Chrome.h" |
42 #include "core/page/FrameView.h" | 42 #include "core/page/FrameView.h" |
43 #include "core/page/Settings.h" | 43 #include "core/page/Settings.h" |
44 #include "core/page/animation/AnimationController.h" | 44 #include "core/page/animation/AnimationController.h" |
45 #include "core/page/scrolling/ScrollingCoordinator.h" | 45 #include "core/page/scrolling/ScrollingCoordinator.h" |
46 #include "core/platform/graphics/FontCache.h" | 46 #include "core/platform/graphics/FontCache.h" |
47 #include "core/platform/graphics/GraphicsContext.h" | 47 #include "core/platform/graphics/GraphicsContext.h" |
48 #include "core/platform/graphics/GraphicsLayer.h" | 48 #include "core/platform/graphics/GraphicsLayer.h" |
49 #include "core/rendering/RenderApplet.h" | 49 #include "core/rendering/RenderApplet.h" |
(...skipping 1931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1981 info.addMember(m_childContainmentLayer, "childContainmentLayer"); | 1981 info.addMember(m_childContainmentLayer, "childContainmentLayer"); |
1982 info.addMember(m_maskLayer, "maskLayer"); | 1982 info.addMember(m_maskLayer, "maskLayer"); |
1983 info.addMember(m_layerForHorizontalScrollbar, "layerForHorizontalScrollbar")
; | 1983 info.addMember(m_layerForHorizontalScrollbar, "layerForHorizontalScrollbar")
; |
1984 info.addMember(m_layerForVerticalScrollbar, "layerForVerticalScrollbar"); | 1984 info.addMember(m_layerForVerticalScrollbar, "layerForVerticalScrollbar"); |
1985 info.addMember(m_layerForScrollCorner, "layerForScrollCorner"); | 1985 info.addMember(m_layerForScrollCorner, "layerForScrollCorner"); |
1986 info.addMember(m_scrollingLayer, "scrollingLayer"); | 1986 info.addMember(m_scrollingLayer, "scrollingLayer"); |
1987 info.addMember(m_scrollingContentsLayer, "scrollingContentsLayer"); | 1987 info.addMember(m_scrollingContentsLayer, "scrollingContentsLayer"); |
1988 } | 1988 } |
1989 | 1989 |
1990 } // namespace WebCore | 1990 } // namespace WebCore |
OLD | NEW |