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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 #include "core/rendering/RenderGeometryMap.h" | 54 #include "core/rendering/RenderGeometryMap.h" |
55 #include "core/rendering/RenderIFrame.h" | 55 #include "core/rendering/RenderIFrame.h" |
56 #include "core/rendering/RenderLayerStackingNode.h" | 56 #include "core/rendering/RenderLayerStackingNode.h" |
57 #include "core/rendering/RenderLayerStackingNodeIterator.h" | 57 #include "core/rendering/RenderLayerStackingNodeIterator.h" |
58 #include "core/rendering/RenderReplica.h" | 58 #include "core/rendering/RenderReplica.h" |
59 #include "core/rendering/RenderVideo.h" | 59 #include "core/rendering/RenderVideo.h" |
60 #include "core/rendering/RenderView.h" | 60 #include "core/rendering/RenderView.h" |
61 #include "core/rendering/compositing/CompositedLayerMapping.h" | 61 #include "core/rendering/compositing/CompositedLayerMapping.h" |
62 #include "core/rendering/compositing/GraphicsLayerUpdater.h" | 62 #include "core/rendering/compositing/GraphicsLayerUpdater.h" |
63 #include "platform/OverscrollTheme.h" | 63 #include "platform/OverscrollTheme.h" |
64 #include "platform/TraceEvent.h" | |
65 #include "platform/geometry/TransformState.h" | 64 #include "platform/geometry/TransformState.h" |
66 #include "platform/graphics/GraphicsLayer.h" | 65 #include "platform/graphics/GraphicsLayer.h" |
67 #include "platform/scroll/ScrollbarTheme.h" | 66 #include "platform/scroll/ScrollbarTheme.h" |
68 #include "public/platform/Platform.h" | 67 #include "public/platform/Platform.h" |
69 #include "wtf/TemporaryChange.h" | 68 #include "wtf/TemporaryChange.h" |
| 69 #include "wtf/TraceEvent.h" |
70 | 70 |
71 #ifndef NDEBUG | 71 #ifndef NDEBUG |
72 #include "core/rendering/RenderTreeAsText.h" | 72 #include "core/rendering/RenderTreeAsText.h" |
73 #endif | 73 #endif |
74 | 74 |
75 namespace WebCore { | 75 namespace WebCore { |
76 | 76 |
77 using namespace HTMLNames; | 77 using namespace HTMLNames; |
78 | 78 |
79 class OverlapMapContainer { | 79 class OverlapMapContainer { |
(...skipping 2180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2260 } else if (graphicsLayer == m_scrollLayer.get()) { | 2260 } else if (graphicsLayer == m_scrollLayer.get()) { |
2261 name = "LocalFrame Scrolling Layer"; | 2261 name = "LocalFrame Scrolling Layer"; |
2262 } else { | 2262 } else { |
2263 ASSERT_NOT_REACHED(); | 2263 ASSERT_NOT_REACHED(); |
2264 } | 2264 } |
2265 | 2265 |
2266 return name; | 2266 return name; |
2267 } | 2267 } |
2268 | 2268 |
2269 } // namespace WebCore | 2269 } // namespace WebCore |
OLD | NEW |