| 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 19 matching lines...) Expand all Loading... |
| 30 #include "AnimationController.h" | 30 #include "AnimationController.h" |
| 31 #include "CSSPropertyNames.h" | 31 #include "CSSPropertyNames.h" |
| 32 #include "CanvasRenderingContext.h" | 32 #include "CanvasRenderingContext.h" |
| 33 #include "Chrome.h" | 33 #include "Chrome.h" |
| 34 #include "ChromeClient.h" | 34 #include "ChromeClient.h" |
| 35 #include "Frame.h" | 35 #include "Frame.h" |
| 36 #include "FrameView.h" | 36 #include "FrameView.h" |
| 37 #include "HTMLCanvasElement.h" | 37 #include "HTMLCanvasElement.h" |
| 38 #include "HTMLIFrameElement.h" | 38 #include "HTMLIFrameElement.h" |
| 39 #include "HTMLNames.h" | 39 #include "HTMLNames.h" |
| 40 #include "HistogramSupport.h" | |
| 41 #include "HitTestResult.h" | 40 #include "HitTestResult.h" |
| 42 #include "InspectorInstrumentation.h" | 41 #include "InspectorInstrumentation.h" |
| 43 #include "Logging.h" | |
| 44 #include "NodeList.h" | 42 #include "NodeList.h" |
| 45 #include "Page.h" | 43 #include "Page.h" |
| 46 #include "RenderApplet.h" | 44 #include "RenderApplet.h" |
| 47 #include "RenderEmbeddedObject.h" | 45 #include "RenderEmbeddedObject.h" |
| 48 #include "RenderFullScreen.h" | 46 #include "RenderFullScreen.h" |
| 49 #include "RenderGeometryMap.h" | 47 #include "RenderGeometryMap.h" |
| 50 #include "RenderIFrame.h" | 48 #include "RenderIFrame.h" |
| 51 #include "RenderLayerBacking.h" | 49 #include "RenderLayerBacking.h" |
| 52 #include "RenderReplica.h" | 50 #include "RenderReplica.h" |
| 53 #include "RenderVideo.h" | 51 #include "RenderVideo.h" |
| 54 #include "RenderView.h" | 52 #include "RenderView.h" |
| 55 #include "ScrollbarTheme.h" | |
| 56 #include "ScrollingConstraints.h" | 53 #include "ScrollingConstraints.h" |
| 57 #include "ScrollingCoordinator.h" | 54 #include "ScrollingCoordinator.h" |
| 58 #include "Settings.h" | 55 #include "Settings.h" |
| 59 #include "WebCoreMemoryInstrumentation.h" | 56 #include "WebCoreMemoryInstrumentation.h" |
| 57 #include "core/platform/HistogramSupport.h" |
| 58 #include "core/platform/Logging.h" |
| 59 #include "core/platform/ScrollbarTheme.h" |
| 60 #include "core/platform/chromium/TraceEvent.h" | 60 #include "core/platform/chromium/TraceEvent.h" |
| 61 #include "core/platform/graphics/GraphicsLayer.h" | 61 #include "core/platform/graphics/GraphicsLayer.h" |
| 62 #include "core/platform/graphics/transforms/TransformState.h" | 62 #include "core/platform/graphics/transforms/TransformState.h" |
| 63 #include <wtf/MemoryInstrumentationHashMap.h> | 63 #include <wtf/MemoryInstrumentationHashMap.h> |
| 64 #include <wtf/TemporaryChange.h> | 64 #include <wtf/TemporaryChange.h> |
| 65 | 65 |
| 66 #if !LOG_DISABLED | 66 #if !LOG_DISABLED |
| 67 #include <wtf/CurrentTime.h> | 67 #include <wtf/CurrentTime.h> |
| 68 #endif | 68 #endif |
| 69 | 69 |
| (...skipping 2688 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 |