| 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 2574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2639 } else if (graphicsLayer == m_scrollLayer.get()) { | 2638 } else if (graphicsLayer == m_scrollLayer.get()) { |
| 2640 name = "Frame Scrolling Layer"; | 2639 name = "Frame Scrolling Layer"; |
| 2641 } else { | 2640 } else { |
| 2642 ASSERT_NOT_REACHED(); | 2641 ASSERT_NOT_REACHED(); |
| 2643 } | 2642 } |
| 2644 | 2643 |
| 2645 return name; | 2644 return name; |
| 2646 } | 2645 } |
| 2647 | 2646 |
| 2648 } // namespace WebCore | 2647 } // namespace WebCore |
| OLD | NEW |