| 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 bool hasAnyAdditionalCompositedLayers(const RenderLayer* rootLayer) const; | 221 bool hasAnyAdditionalCompositedLayers(const RenderLayer* rootLayer) const; |
| 222 | 222 |
| 223 void ensureRootLayer(); | 223 void ensureRootLayer(); |
| 224 void destroyRootLayer(); | 224 void destroyRootLayer(); |
| 225 | 225 |
| 226 void attachRootLayer(RootLayerAttachment); | 226 void attachRootLayer(RootLayerAttachment); |
| 227 void detachRootLayer(); | 227 void detachRootLayer(); |
| 228 | 228 |
| 229 void updateOverflowControlsLayers(); | 229 void updateOverflowControlsLayers(); |
| 230 | 230 |
| 231 void notifyIFramesOfCompositingChange(); | |
| 232 | |
| 233 Page* page() const; | 231 Page* page() const; |
| 234 | 232 |
| 235 GraphicsLayerFactory* graphicsLayerFactory() const; | 233 GraphicsLayerFactory* graphicsLayerFactory() const; |
| 236 ScrollingCoordinator* scrollingCoordinator() const; | 234 ScrollingCoordinator* scrollingCoordinator() const; |
| 237 | 235 |
| 238 bool compositingLayersNeedRebuild(); | 236 bool compositingLayersNeedRebuild(); |
| 239 | 237 |
| 240 void enableCompositingModeIfNeeded(); | 238 void enableCompositingModeIfNeeded(); |
| 241 | 239 |
| 242 bool requiresHorizontalScrollbarLayer() const; | 240 bool requiresHorizontalScrollbarLayer() const; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 OwnPtr<GraphicsLayer> m_layerForVerticalScrollbar; | 288 OwnPtr<GraphicsLayer> m_layerForVerticalScrollbar; |
| 291 OwnPtr<GraphicsLayer> m_layerForScrollCorner; | 289 OwnPtr<GraphicsLayer> m_layerForScrollCorner; |
| 292 #if USE(RUBBER_BANDING) | 290 #if USE(RUBBER_BANDING) |
| 293 OwnPtr<GraphicsLayer> m_layerForOverhangShadow; | 291 OwnPtr<GraphicsLayer> m_layerForOverhangShadow; |
| 294 #endif | 292 #endif |
| 295 }; | 293 }; |
| 296 | 294 |
| 297 } // namespace WebCore | 295 } // namespace WebCore |
| 298 | 296 |
| 299 #endif // RenderLayerCompositor_h | 297 #endif // RenderLayerCompositor_h |
| OLD | NEW |