OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 Page* page() const; | 222 Page* page() const; |
223 | 223 |
224 GraphicsLayerFactory* graphicsLayerFactory() const; | 224 GraphicsLayerFactory* graphicsLayerFactory() const; |
225 ScrollingCoordinator* scrollingCoordinator() const; | 225 ScrollingCoordinator* scrollingCoordinator() const; |
226 | 226 |
227 void enableCompositingModeIfNeeded(); | 227 void enableCompositingModeIfNeeded(); |
228 | 228 |
229 bool requiresHorizontalScrollbarLayer() const; | 229 bool requiresHorizontalScrollbarLayer() const; |
230 bool requiresVerticalScrollbarLayer() const; | 230 bool requiresVerticalScrollbarLayer() const; |
231 bool requiresScrollCornerLayer() const; | 231 bool requiresScrollCornerLayer() const; |
232 #if USE(RUBBER_BANDING) | |
233 bool requiresOverhangLayers() const; | |
234 #endif | |
235 | 232 |
236 void applyUpdateLayerCompositingStateChickenEggHacks(RenderLayer*, Compositi
ngStateTransitionType compositedLayerUpdate); | 233 void applyUpdateLayerCompositingStateChickenEggHacks(RenderLayer*, Compositi
ngStateTransitionType compositedLayerUpdate); |
237 | 234 |
238 DocumentLifecycle& lifecycle() const; | 235 DocumentLifecycle& lifecycle() const; |
239 | 236 |
240 void applyOverlayFullscreenVideoAdjustment(); | 237 void applyOverlayFullscreenVideoAdjustment(); |
241 | 238 |
242 RenderView& m_renderView; | 239 RenderView& m_renderView; |
243 OwnPtr<GraphicsLayer> m_rootContentLayer; | 240 OwnPtr<GraphicsLayer> m_rootContentLayer; |
244 OwnPtr<GraphicsLayer> m_rootTransformLayer; | 241 OwnPtr<GraphicsLayer> m_rootTransformLayer; |
(...skipping 30 matching lines...) Expand all Loading... |
275 OwnPtr<GraphicsLayer> m_layerForVerticalScrollbar; | 272 OwnPtr<GraphicsLayer> m_layerForVerticalScrollbar; |
276 OwnPtr<GraphicsLayer> m_layerForScrollCorner; | 273 OwnPtr<GraphicsLayer> m_layerForScrollCorner; |
277 #if USE(RUBBER_BANDING) | 274 #if USE(RUBBER_BANDING) |
278 OwnPtr<GraphicsLayer> m_layerForOverhangShadow; | 275 OwnPtr<GraphicsLayer> m_layerForOverhangShadow; |
279 #endif | 276 #endif |
280 }; | 277 }; |
281 | 278 |
282 } // namespace WebCore | 279 } // namespace WebCore |
283 | 280 |
284 #endif // RenderLayerCompositor_h | 281 #endif // RenderLayerCompositor_h |
OLD | NEW |