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 29 matching lines...) Expand all Loading... |
40 #include "core/page/Chrome.h" | 40 #include "core/page/Chrome.h" |
41 #include "core/page/ChromeClient.h" | 41 #include "core/page/ChromeClient.h" |
42 #include "core/page/Frame.h" | 42 #include "core/page/Frame.h" |
43 #include "core/page/FrameView.h" | 43 #include "core/page/FrameView.h" |
44 #include "core/page/Page.h" | 44 #include "core/page/Page.h" |
45 #include "core/page/Settings.h" | 45 #include "core/page/Settings.h" |
46 #include "core/page/animation/AnimationController.h" | 46 #include "core/page/animation/AnimationController.h" |
47 #include "core/page/scrolling/ScrollingConstraints.h" | 47 #include "core/page/scrolling/ScrollingConstraints.h" |
48 #include "core/page/scrolling/ScrollingCoordinator.h" | 48 #include "core/page/scrolling/ScrollingCoordinator.h" |
49 #include "core/platform/HistogramSupport.h" | 49 #include "core/platform/HistogramSupport.h" |
50 #include "core/platform/Logging.h" | 50 #include "platform/Logging.h" |
51 #include "core/platform/ScrollbarTheme.h" | 51 #include "core/platform/ScrollbarTheme.h" |
52 #include "core/platform/chromium/TraceEvent.h" | 52 #include "core/platform/chromium/TraceEvent.h" |
53 #include "core/platform/graphics/GraphicsLayer.h" | 53 #include "core/platform/graphics/GraphicsLayer.h" |
54 #include "core/platform/graphics/GraphicsLayerClient.h" | 54 #include "core/platform/graphics/GraphicsLayerClient.h" |
55 #include "core/platform/graphics/transforms/TransformState.h" | 55 #include "core/platform/graphics/transforms/TransformState.h" |
56 #include "core/rendering/HitTestResult.h" | 56 #include "core/rendering/HitTestResult.h" |
57 #include "core/rendering/RenderApplet.h" | 57 #include "core/rendering/RenderApplet.h" |
58 #include "core/rendering/RenderEmbeddedObject.h" | 58 #include "core/rendering/RenderEmbeddedObject.h" |
59 #include "core/rendering/RenderFullScreen.h" | 59 #include "core/rendering/RenderFullScreen.h" |
60 #include "core/rendering/RenderGeometryMap.h" | 60 #include "core/rendering/RenderGeometryMap.h" |
(...skipping 2726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2787 } else if (graphicsLayer == m_scrollLayer.get()) { | 2787 } else if (graphicsLayer == m_scrollLayer.get()) { |
2788 name = "Frame Scrolling Layer"; | 2788 name = "Frame Scrolling Layer"; |
2789 } else { | 2789 } else { |
2790 ASSERT_NOT_REACHED(); | 2790 ASSERT_NOT_REACHED(); |
2791 } | 2791 } |
2792 | 2792 |
2793 return name; | 2793 return name; |
2794 } | 2794 } |
2795 | 2795 |
2796 } // namespace WebCore | 2796 } // namespace WebCore |
OLD | NEW |