| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Intel Corporation. All rights reserved. | 3 * Copyright (C) 2013 Intel Corporation. All rights reserved. |
| 4 * | 4 * |
| 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. | 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. |
| 6 * | 6 * |
| 7 * Other contributors: | 7 * Other contributors: |
| 8 * Robert O'Callahan <roc+@cs.cmu.edu> | 8 * Robert O'Callahan <roc+@cs.cmu.edu> |
| 9 * David Baron <dbaron@fas.harvard.edu> | 9 * David Baron <dbaron@fas.harvard.edu> |
| 10 * Christian Biesinger <cbiesinger@web.de> | 10 * Christian Biesinger <cbiesinger@web.de> |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 * version of this file under the LGPL, indicate your decision by | 38 * version of this file under the LGPL, indicate your decision by |
| 39 * deletingthe provisions above and replace them with the notice and | 39 * deletingthe provisions above and replace them with the notice and |
| 40 * other provisions required by the MPL or the GPL, as the case may be. | 40 * other provisions required by the MPL or the GPL, as the case may be. |
| 41 * If you do not delete the provisions above, a recipient may use your | 41 * If you do not delete the provisions above, a recipient may use your |
| 42 * version of this file under any of the LGPL, the MPL or the GPL. | 42 * version of this file under any of the LGPL, the MPL or the GPL. |
| 43 */ | 43 */ |
| 44 | 44 |
| 45 #ifndef LayerPaintingInfo_h | 45 #ifndef LayerPaintingInfo_h |
| 46 #define LayerPaintingInfo_h | 46 #define LayerPaintingInfo_h |
| 47 | 47 |
| 48 #include "core/rendering/PaintInfo.h" | 48 #include "sky/engine/core/rendering/PaintInfo.h" |
| 49 #include "platform/geometry/LayoutRect.h" | 49 #include "sky/engine/platform/geometry/LayoutRect.h" |
| 50 | 50 |
| 51 namespace blink { | 51 namespace blink { |
| 52 | 52 |
| 53 class RenderLayer; | 53 class RenderLayer; |
| 54 | 54 |
| 55 enum PaintLayerFlag { | 55 enum PaintLayerFlag { |
| 56 PaintLayerHaveTransparency = 1, | 56 PaintLayerHaveTransparency = 1, |
| 57 PaintLayerAppliedTransform = 1 << 1, | 57 PaintLayerAppliedTransform = 1 << 1, |
| 58 PaintLayerUncachedClipRects = 1 << 2, | 58 PaintLayerUncachedClipRects = 1 << 2, |
| 59 PaintLayerPaintingOverlayScrollbars = 1 << 4, | 59 PaintLayerPaintingOverlayScrollbars = 1 << 4, |
| (...skipping 25 matching lines...) Expand all Loading... |
| 85 RenderObject* paintingRoot; // only paint descendants of this object | 85 RenderObject* paintingRoot; // only paint descendants of this object |
| 86 LayoutRect paintDirtyRect; // relative to rootLayer; | 86 LayoutRect paintDirtyRect; // relative to rootLayer; |
| 87 LayoutSize subPixelAccumulation; | 87 LayoutSize subPixelAccumulation; |
| 88 PaintBehavior paintBehavior; | 88 PaintBehavior paintBehavior; |
| 89 bool clipToDirtyRect; | 89 bool clipToDirtyRect; |
| 90 }; | 90 }; |
| 91 | 91 |
| 92 } // namespace blink | 92 } // namespace blink |
| 93 | 93 |
| 94 #endif // LayerPaintingInfo_h | 94 #endif // LayerPaintingInfo_h |
| OLD | NEW |