| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/frame/Settings.h" | 46 #include "core/frame/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/rendering/CompositedLayerMapping.h" | 50 #include "core/rendering/CompositedLayerMapping.h" |
| 51 #include "core/rendering/HitTestResult.h" | 51 #include "core/rendering/HitTestResult.h" |
| 52 #include "core/rendering/RenderApplet.h" | 52 #include "core/rendering/RenderApplet.h" |
| 53 #include "core/rendering/RenderEmbeddedObject.h" | 53 #include "core/rendering/RenderEmbeddedObject.h" |
| 54 #include "core/rendering/RenderFullScreen.h" | |
| 55 #include "core/rendering/RenderGeometryMap.h" | 54 #include "core/rendering/RenderGeometryMap.h" |
| 56 #include "core/rendering/RenderIFrame.h" | 55 #include "core/rendering/RenderIFrame.h" |
| 57 #include "core/rendering/RenderLayerStackingNode.h" | 56 #include "core/rendering/RenderLayerStackingNode.h" |
| 58 #include "core/rendering/RenderLayerStackingNodeIterator.h" | 57 #include "core/rendering/RenderLayerStackingNodeIterator.h" |
| 59 #include "core/rendering/RenderReplica.h" | 58 #include "core/rendering/RenderReplica.h" |
| 60 #include "core/rendering/RenderVideo.h" | 59 #include "core/rendering/RenderVideo.h" |
| 61 #include "core/rendering/RenderView.h" | 60 #include "core/rendering/RenderView.h" |
| 62 #include "platform/OverscrollTheme.h" | 61 #include "platform/OverscrollTheme.h" |
| 63 #include "platform/TraceEvent.h" | 62 #include "platform/TraceEvent.h" |
| 64 #include "platform/geometry/TransformState.h" | 63 #include "platform/geometry/TransformState.h" |
| (...skipping 2591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2656 } else if (graphicsLayer == m_scrollLayer.get()) { | 2655 } else if (graphicsLayer == m_scrollLayer.get()) { |
| 2657 name = "Frame Scrolling Layer"; | 2656 name = "Frame Scrolling Layer"; |
| 2658 } else { | 2657 } else { |
| 2659 ASSERT_NOT_REACHED(); | 2658 ASSERT_NOT_REACHED(); |
| 2660 } | 2659 } |
| 2661 | 2660 |
| 2662 return name; | 2661 return name; |
| 2663 } | 2662 } |
| 2664 | 2663 |
| 2665 } // namespace WebCore | 2664 } // namespace WebCore |
| OLD | NEW |