| 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 16 matching lines...) Expand all Loading... |
| 27 #define RenderLayerCompositor_h | 27 #define RenderLayerCompositor_h |
| 28 | 28 |
| 29 #include "core/page/ChromeClient.h" | 29 #include "core/page/ChromeClient.h" |
| 30 #include "core/rendering/RenderLayer.h" | 30 #include "core/rendering/RenderLayer.h" |
| 31 #include "core/rendering/compositing/CompositingReasonFinder.h" | 31 #include "core/rendering/compositing/CompositingReasonFinder.h" |
| 32 #include "platform/graphics/GraphicsLayerClient.h" | 32 #include "platform/graphics/GraphicsLayerClient.h" |
| 33 #include "wtf/HashMap.h" | 33 #include "wtf/HashMap.h" |
| 34 | 34 |
| 35 namespace WebCore { | 35 namespace WebCore { |
| 36 | 36 |
| 37 class FixedPositionViewportConstraints; | |
| 38 class GraphicsLayer; | 37 class GraphicsLayer; |
| 39 class RenderEmbeddedObject; | |
| 40 class RenderLayerStackingNode; | |
| 41 class RenderPart; | 38 class RenderPart; |
| 42 class RenderVideo; | |
| 43 class ScrollingCoordinator; | 39 class ScrollingCoordinator; |
| 44 class StickyPositionViewportConstraints; | |
| 45 | 40 |
| 46 enum CompositingUpdateType { | 41 enum CompositingUpdateType { |
| 47 CompositingUpdateNone, | 42 CompositingUpdateNone, |
| 48 CompositingUpdateAfterGeometryChange, | 43 CompositingUpdateAfterGeometryChange, |
| 49 CompositingUpdateAfterCompositingInputChange, | 44 CompositingUpdateAfterCompositingInputChange, |
| 50 CompositingUpdateRebuildTree, | 45 CompositingUpdateRebuildTree, |
| 51 }; | 46 }; |
| 52 | 47 |
| 53 enum CompositingStateTransitionType { | 48 enum CompositingStateTransitionType { |
| 54 NoCompositingStateChange, | 49 NoCompositingStateChange, |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 #if USE(RUBBER_BANDING) | 271 #if USE(RUBBER_BANDING) |
| 277 OwnPtr<GraphicsLayer> m_layerForOverhangShadow; | 272 OwnPtr<GraphicsLayer> m_layerForOverhangShadow; |
| 278 #endif | 273 #endif |
| 279 | 274 |
| 280 bool m_inOverlayFullscreenVideo; | 275 bool m_inOverlayFullscreenVideo; |
| 281 }; | 276 }; |
| 282 | 277 |
| 283 } // namespace WebCore | 278 } // namespace WebCore |
| 284 | 279 |
| 285 #endif // RenderLayerCompositor_h | 280 #endif // RenderLayerCompositor_h |
| OLD | NEW |