| 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 12 matching lines...) Expand all Loading... |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef RenderLayerCompositor_h | 26 #ifndef RenderLayerCompositor_h |
| 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/page/Frame.h" | 30 #include "core/page/Frame.h" |
| 31 #include "core/platform/graphics/GraphicsLayerClient.h" | 31 #include "core/platform/graphics/GraphicsLayerClient.h" |
| 32 #include "core/rendering/RenderLayer.h" | 32 #include "core/rendering/RenderLayer.h" |
| 33 #include <wtf/HashMap.h> | 33 #include "wtf/HashMap.h" |
| 34 | 34 |
| 35 namespace WebCore { | 35 namespace WebCore { |
| 36 | 36 |
| 37 class FixedPositionViewportConstraints; | 37 class FixedPositionViewportConstraints; |
| 38 class GraphicsLayer; | 38 class GraphicsLayer; |
| 39 class RenderEmbeddedObject; | 39 class RenderEmbeddedObject; |
| 40 class RenderPart; | 40 class RenderPart; |
| 41 class RenderVideo; | 41 class RenderVideo; |
| 42 class ScrollingCoordinator; | 42 class ScrollingCoordinator; |
| 43 class StickyPositionViewportConstraints; | 43 class StickyPositionViewportConstraints; |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 int m_secondaryCompositedLayerCount; // count of layers that have to be comp
osited because of stacking or overlap. | 360 int m_secondaryCompositedLayerCount; // count of layers that have to be comp
osited because of stacking or overlap. |
| 361 double m_obligatoryBackingStoreBytes; | 361 double m_obligatoryBackingStoreBytes; |
| 362 double m_secondaryBackingStoreBytes; | 362 double m_secondaryBackingStoreBytes; |
| 363 #endif | 363 #endif |
| 364 }; | 364 }; |
| 365 | 365 |
| 366 | 366 |
| 367 } // namespace WebCore | 367 } // namespace WebCore |
| 368 | 368 |
| 369 #endif // RenderLayerCompositor_h | 369 #endif // RenderLayerCompositor_h |
| OLD | NEW |