OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009, 2010 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 15 matching lines...) Expand all Loading... |
26 #include "config.h" | 26 #include "config.h" |
27 | 27 |
28 #include "core/rendering/RenderLayerCompositor.h" | 28 #include "core/rendering/RenderLayerCompositor.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 "HTMLNames.h" | 34 #include "HTMLNames.h" |
35 #include "InspectorInstrumentation.h" | 35 #include "InspectorInstrumentation.h" |
36 #include "NodeList.h" | 36 #include "core/dom/NodeList.h" |
37 #include "WebCoreMemoryInstrumentation.h" | 37 #include "core/dom/WebCoreMemoryInstrumentation.h" |
38 #include "core/page/Chrome.h" | 38 #include "core/page/Chrome.h" |
39 #include "core/page/ChromeClient.h" | 39 #include "core/page/ChromeClient.h" |
40 #include "core/page/Frame.h" | 40 #include "core/page/Frame.h" |
41 #include "core/page/FrameView.h" | 41 #include "core/page/FrameView.h" |
42 #include "core/page/Page.h" | 42 #include "core/page/Page.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/ScrollingConstraints.h" | 45 #include "core/page/scrolling/ScrollingConstraints.h" |
46 #include "core/page/scrolling/ScrollingCoordinator.h" | 46 #include "core/page/scrolling/ScrollingCoordinator.h" |
47 #include "core/platform/HistogramSupport.h" | 47 #include "core/platform/HistogramSupport.h" |
(...skipping 2710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2758 info.addMember(m_layerForScrollCorner, "layerForScrollCorner"); | 2758 info.addMember(m_layerForScrollCorner, "layerForScrollCorner"); |
2759 #if ENABLE(RUBBER_BANDING) | 2759 #if ENABLE(RUBBER_BANDING) |
2760 info.addMember(m_layerForOverhangAreas, "layerForOverhangAreas"); | 2760 info.addMember(m_layerForOverhangAreas, "layerForOverhangAreas"); |
2761 info.addMember(m_contentShadowLayer, "contentShadowLayer"); | 2761 info.addMember(m_contentShadowLayer, "contentShadowLayer"); |
2762 info.addMember(m_layerForTopOverhangArea, "layerForTopOverhangArea"); | 2762 info.addMember(m_layerForTopOverhangArea, "layerForTopOverhangArea"); |
2763 info.addMember(m_layerForBottomOverhangArea, "layerForBottomOverhangArea"); | 2763 info.addMember(m_layerForBottomOverhangArea, "layerForBottomOverhangArea"); |
2764 #endif | 2764 #endif |
2765 } | 2765 } |
2766 | 2766 |
2767 } // namespace WebCore | 2767 } // namespace WebCore |
OLD | NEW |