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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 #include "core/platform/HistogramSupport.h" | 47 #include "core/platform/HistogramSupport.h" |
48 #include "core/platform/Logging.h" | 48 #include "core/platform/Logging.h" |
49 #include "core/platform/ScrollbarTheme.h" | 49 #include "core/platform/ScrollbarTheme.h" |
50 #include "core/platform/chromium/TraceEvent.h" | 50 #include "core/platform/chromium/TraceEvent.h" |
51 #include "core/platform/graphics/GraphicsLayer.h" | 51 #include "core/platform/graphics/GraphicsLayer.h" |
52 #include "core/platform/graphics/GraphicsLayerClient.h" | 52 #include "core/platform/graphics/GraphicsLayerClient.h" |
53 #include "core/platform/graphics/transforms/TransformState.h" | 53 #include "core/platform/graphics/transforms/TransformState.h" |
54 #include "core/rendering/HitTestResult.h" | 54 #include "core/rendering/HitTestResult.h" |
55 #include "core/rendering/RenderApplet.h" | 55 #include "core/rendering/RenderApplet.h" |
56 #include "core/rendering/RenderEmbeddedObject.h" | 56 #include "core/rendering/RenderEmbeddedObject.h" |
57 #include "core/rendering/RenderFullScreen.h" | |
58 #include "core/rendering/RenderGeometryMap.h" | 57 #include "core/rendering/RenderGeometryMap.h" |
59 #include "core/rendering/RenderIFrame.h" | 58 #include "core/rendering/RenderIFrame.h" |
60 #include "core/rendering/RenderLayerBacking.h" | 59 #include "core/rendering/RenderLayerBacking.h" |
61 #include "core/rendering/RenderReplica.h" | 60 #include "core/rendering/RenderReplica.h" |
62 #include "core/rendering/RenderVideo.h" | 61 #include "core/rendering/RenderVideo.h" |
63 #include "core/rendering/RenderView.h" | 62 #include "core/rendering/RenderView.h" |
64 #include "wtf/MemoryInstrumentationHashMap.h" | 63 #include "wtf/MemoryInstrumentationHashMap.h" |
65 #include "wtf/MemoryInstrumentationHashSet.h" | 64 #include "wtf/MemoryInstrumentationHashSet.h" |
66 #include "wtf/TemporaryChange.h" | 65 #include "wtf/TemporaryChange.h" |
67 | 66 |
(...skipping 2663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2731 info.addMember(m_layerForScrollCorner, "layerForScrollCorner"); | 2730 info.addMember(m_layerForScrollCorner, "layerForScrollCorner"); |
2732 #if ENABLE(RUBBER_BANDING) | 2731 #if ENABLE(RUBBER_BANDING) |
2733 info.addMember(m_layerForOverhangAreas, "layerForOverhangAreas"); | 2732 info.addMember(m_layerForOverhangAreas, "layerForOverhangAreas"); |
2734 info.addMember(m_contentShadowLayer, "contentShadowLayer"); | 2733 info.addMember(m_contentShadowLayer, "contentShadowLayer"); |
2735 info.addMember(m_layerForTopOverhangArea, "layerForTopOverhangArea"); | 2734 info.addMember(m_layerForTopOverhangArea, "layerForTopOverhangArea"); |
2736 info.addMember(m_layerForBottomOverhangArea, "layerForBottomOverhangArea"); | 2735 info.addMember(m_layerForBottomOverhangArea, "layerForBottomOverhangArea"); |
2737 #endif | 2736 #endif |
2738 } | 2737 } |
2739 | 2738 |
2740 } // namespace WebCore | 2739 } // namespace WebCore |
OLD | NEW |