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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 | 185 |
186 void updateWithoutAcceleratedCompositing(CompositingUpdateType); | 186 void updateWithoutAcceleratedCompositing(CompositingUpdateType); |
187 void updateIfNeeded(); | 187 void updateIfNeeded(); |
188 | 188 |
189 void ensureRootLayer(); | 189 void ensureRootLayer(); |
190 void destroyRootLayer(); | 190 void destroyRootLayer(); |
191 | 191 |
192 void attachRootLayer(RootLayerAttachment); | 192 void attachRootLayer(RootLayerAttachment); |
193 void detachRootLayer(); | 193 void detachRootLayer(); |
194 | 194 |
| 195 void attachCompositorTimeline(); |
| 196 void detachCompositorTimeline(); |
| 197 |
195 void updateOverflowControlsLayers(); | 198 void updateOverflowControlsLayers(); |
196 | 199 |
197 Page* page() const; | 200 Page* page() const; |
198 | 201 |
199 GraphicsLayerFactory* graphicsLayerFactory() const; | 202 GraphicsLayerFactory* graphicsLayerFactory() const; |
200 ScrollingCoordinator* scrollingCoordinator() const; | 203 ScrollingCoordinator* scrollingCoordinator() const; |
201 | 204 |
202 void enableCompositingModeIfNeeded(); | 205 void enableCompositingModeIfNeeded(); |
203 | 206 |
204 bool requiresHorizontalScrollbarLayer() const; | 207 bool requiresHorizontalScrollbarLayer() const; |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 OwnPtr<GraphicsLayer> m_layerForHorizontalScrollbar; | 245 OwnPtr<GraphicsLayer> m_layerForHorizontalScrollbar; |
243 OwnPtr<GraphicsLayer> m_layerForVerticalScrollbar; | 246 OwnPtr<GraphicsLayer> m_layerForVerticalScrollbar; |
244 OwnPtr<GraphicsLayer> m_layerForScrollCorner; | 247 OwnPtr<GraphicsLayer> m_layerForScrollCorner; |
245 | 248 |
246 bool m_inOverlayFullscreenVideo; | 249 bool m_inOverlayFullscreenVideo; |
247 }; | 250 }; |
248 | 251 |
249 } // namespace blink | 252 } // namespace blink |
250 | 253 |
251 #endif // DeprecatedPaintLayerCompositor_h | 254 #endif // DeprecatedPaintLayerCompositor_h |
OLD | NEW |