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 27 matching lines...) Expand all Loading... |
38 class GraphicsLayer; | 38 class GraphicsLayer; |
39 class RenderEmbeddedObject; | 39 class RenderEmbeddedObject; |
40 class RenderLayerStackingNode; | 40 class RenderLayerStackingNode; |
41 class RenderPart; | 41 class RenderPart; |
42 class RenderVideo; | 42 class RenderVideo; |
43 class ScrollingCoordinator; | 43 class ScrollingCoordinator; |
44 class StickyPositionViewportConstraints; | 44 class StickyPositionViewportConstraints; |
45 | 45 |
46 enum CompositingUpdateType { | 46 enum CompositingUpdateType { |
47 CompositingUpdateNone, | 47 CompositingUpdateNone, |
48 CompositingUpdateOnCompositedScroll, | 48 CompositingUpdateAfterGeometryChange, |
49 CompositingUpdateAfterCompositingInputChange, | 49 CompositingUpdateAfterCompositingInputChange, |
50 CompositingUpdateRebuildTree, | 50 CompositingUpdateRebuildTree, |
51 }; | 51 }; |
52 | 52 |
53 enum CompositingStateTransitionType { | 53 enum CompositingStateTransitionType { |
54 NoCompositingStateChange, | 54 NoCompositingStateChange, |
55 AllocateOwnCompositedLayerMapping, | 55 AllocateOwnCompositedLayerMapping, |
56 RemoveOwnCompositedLayerMapping, | 56 RemoveOwnCompositedLayerMapping, |
57 PutInSquashingLayer, | 57 PutInSquashingLayer, |
58 RemoveFromSquashingLayer | 58 RemoveFromSquashingLayer |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 #if USE(RUBBER_BANDING) | 276 #if USE(RUBBER_BANDING) |
277 OwnPtr<GraphicsLayer> m_layerForOverhangShadow; | 277 OwnPtr<GraphicsLayer> m_layerForOverhangShadow; |
278 #endif | 278 #endif |
279 | 279 |
280 bool m_inOverlayFullscreenVideo; | 280 bool m_inOverlayFullscreenVideo; |
281 }; | 281 }; |
282 | 282 |
283 } // namespace WebCore | 283 } // namespace WebCore |
284 | 284 |
285 #endif // RenderLayerCompositor_h | 285 #endif // RenderLayerCompositor_h |
OLD | NEW |