OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009, 2010, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009, 2010, 2011 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 #include "core/layout/LayoutView.h" | 46 #include "core/layout/LayoutView.h" |
47 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h" | 47 #include "core/layout/compositing/DeprecatedPaintLayerCompositor.h" |
48 #include "core/page/ChromeClient.h" | 48 #include "core/page/ChromeClient.h" |
49 #include "core/page/Page.h" | 49 #include "core/page/Page.h" |
50 #include "core/page/scrolling/ScrollingCoordinator.h" | 50 #include "core/page/scrolling/ScrollingCoordinator.h" |
51 #include "core/paint/DeprecatedPaintLayerPainter.h" | 51 #include "core/paint/DeprecatedPaintLayerPainter.h" |
52 #include "core/paint/DeprecatedPaintLayerStackingNodeIterator.h" | 52 #include "core/paint/DeprecatedPaintLayerStackingNodeIterator.h" |
53 #include "core/paint/ScrollableAreaPainter.h" | 53 #include "core/paint/ScrollableAreaPainter.h" |
54 #include "core/paint/TransformRecorder.h" | 54 #include "core/paint/TransformRecorder.h" |
55 #include "core/plugins/PluginView.h" | 55 #include "core/plugins/PluginView.h" |
56 #include "core/style/KeyframeList.h" | |
57 #include "platform/LengthFunctions.h" | 56 #include "platform/LengthFunctions.h" |
58 #include "platform/RuntimeEnabledFeatures.h" | 57 #include "platform/RuntimeEnabledFeatures.h" |
59 #include "platform/fonts/FontCache.h" | 58 #include "platform/fonts/FontCache.h" |
60 #include "platform/geometry/TransformState.h" | 59 #include "platform/geometry/TransformState.h" |
61 #include "platform/graphics/GraphicsContext.h" | 60 #include "platform/graphics/GraphicsContext.h" |
62 #include "platform/graphics/paint/ClipDisplayItem.h" | 61 #include "platform/graphics/paint/ClipDisplayItem.h" |
63 #include "platform/graphics/paint/DisplayItemList.h" | 62 #include "platform/graphics/paint/DisplayItemList.h" |
64 #include "platform/graphics/paint/TransformDisplayItem.h" | 63 #include "platform/graphics/paint/TransformDisplayItem.h" |
65 #include "wtf/CurrentTime.h" | 64 #include "wtf/CurrentTime.h" |
66 #include "wtf/text/StringBuilder.h" | 65 #include "wtf/text/StringBuilder.h" |
(...skipping 2281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2348 } else if (graphicsLayer == m_scrollingBlockSelectionLayer.get()) { | 2347 } else if (graphicsLayer == m_scrollingBlockSelectionLayer.get()) { |
2349 name = "Scrolling Block Selection Layer"; | 2348 name = "Scrolling Block Selection Layer"; |
2350 } else { | 2349 } else { |
2351 ASSERT_NOT_REACHED(); | 2350 ASSERT_NOT_REACHED(); |
2352 } | 2351 } |
2353 | 2352 |
2354 return name; | 2353 return name; |
2355 } | 2354 } |
2356 | 2355 |
2357 } // namespace blink | 2356 } // namespace blink |
OLD | NEW |