| 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 30 matching lines...) Expand all Loading... |
| 41 #include "core/inspector/InspectorInstrumentation.h" | 41 #include "core/inspector/InspectorInstrumentation.h" |
| 42 #include "core/page/Chrome.h" | 42 #include "core/page/Chrome.h" |
| 43 #include "core/frame/Frame.h" | 43 #include "core/frame/Frame.h" |
| 44 #include "core/frame/FrameView.h" | 44 #include "core/frame/FrameView.h" |
| 45 #include "core/page/Page.h" | 45 #include "core/page/Page.h" |
| 46 #include "core/page/Settings.h" | 46 #include "core/page/Settings.h" |
| 47 #include "core/frame/animation/AnimationController.h" | 47 #include "core/frame/animation/AnimationController.h" |
| 48 #include "core/page/scrolling/ScrollingConstraints.h" | 48 #include "core/page/scrolling/ScrollingConstraints.h" |
| 49 #include "core/page/scrolling/ScrollingCoordinator.h" | 49 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 50 #include "core/platform/OverscrollTheme.h" | 50 #include "core/platform/OverscrollTheme.h" |
| 51 #include "core/platform/ScrollbarTheme.h" | |
| 52 #include "core/platform/graphics/GraphicsLayer.h" | |
| 53 #include "core/rendering/CompositedLayerMapping.h" | 51 #include "core/rendering/CompositedLayerMapping.h" |
| 54 #include "core/rendering/HitTestResult.h" | 52 #include "core/rendering/HitTestResult.h" |
| 55 #include "core/rendering/RenderApplet.h" | 53 #include "core/rendering/RenderApplet.h" |
| 56 #include "core/rendering/RenderEmbeddedObject.h" | 54 #include "core/rendering/RenderEmbeddedObject.h" |
| 57 #include "core/rendering/RenderFullScreen.h" | 55 #include "core/rendering/RenderFullScreen.h" |
| 58 #include "core/rendering/RenderGeometryMap.h" | 56 #include "core/rendering/RenderGeometryMap.h" |
| 59 #include "core/rendering/RenderIFrame.h" | 57 #include "core/rendering/RenderIFrame.h" |
| 60 #include "core/rendering/RenderLayerStackingNode.h" | 58 #include "core/rendering/RenderLayerStackingNode.h" |
| 61 #include "core/rendering/RenderLayerStackingNodeIterator.h" | 59 #include "core/rendering/RenderLayerStackingNodeIterator.h" |
| 62 #include "core/rendering/RenderReplica.h" | 60 #include "core/rendering/RenderReplica.h" |
| 63 #include "core/rendering/RenderVideo.h" | 61 #include "core/rendering/RenderVideo.h" |
| 64 #include "core/rendering/RenderView.h" | 62 #include "core/rendering/RenderView.h" |
| 65 #include "platform/TraceEvent.h" | 63 #include "platform/TraceEvent.h" |
| 66 #include "platform/geometry/TransformState.h" | 64 #include "platform/geometry/TransformState.h" |
| 65 #include "platform/graphics/GraphicsLayer.h" |
| 66 #include "platform/scroll/ScrollbarTheme.h" |
| 67 #include "public/platform/Platform.h" | 67 #include "public/platform/Platform.h" |
| 68 #include "wtf/TemporaryChange.h" | 68 #include "wtf/TemporaryChange.h" |
| 69 | 69 |
| 70 #ifndef NDEBUG | 70 #ifndef NDEBUG |
| 71 #include "core/rendering/RenderTreeAsText.h" | 71 #include "core/rendering/RenderTreeAsText.h" |
| 72 #endif | 72 #endif |
| 73 | 73 |
| 74 namespace WebCore { | 74 namespace WebCore { |
| 75 | 75 |
| 76 using namespace HTMLNames; | 76 using namespace HTMLNames; |
| (...skipping 2399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2476 } else if (graphicsLayer == m_scrollLayer.get()) { | 2476 } else if (graphicsLayer == m_scrollLayer.get()) { |
| 2477 name = "Frame Scrolling Layer"; | 2477 name = "Frame Scrolling Layer"; |
| 2478 } else { | 2478 } else { |
| 2479 ASSERT_NOT_REACHED(); | 2479 ASSERT_NOT_REACHED(); |
| 2480 } | 2480 } |
| 2481 | 2481 |
| 2482 return name; | 2482 return name; |
| 2483 } | 2483 } |
| 2484 | 2484 |
| 2485 } // namespace WebCore | 2485 } // namespace WebCore |
| OLD | NEW |