| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 #ifndef PaintLayerPaintingInfo_h | 45 #ifndef PaintLayerPaintingInfo_h |
| 46 #define PaintLayerPaintingInfo_h | 46 #define PaintLayerPaintingInfo_h |
| 47 | 47 |
| 48 #include "core/paint/PaintPhase.h" | 48 #include "core/paint/PaintPhase.h" |
| 49 #include "platform/geometry/LayoutRect.h" | 49 #include "platform/geometry/LayoutRect.h" |
| 50 #include "wtf/Allocator.h" | 50 #include "wtf/Allocator.h" |
| 51 | 51 |
| 52 namespace blink { | 52 namespace blink { |
| 53 | 53 |
| 54 class PaintLayer; | 54 class PaintLayer; |
| 55 class LayoutObject; | |
| 56 | 55 |
| 57 enum PaintLayerFlag { | 56 enum PaintLayerFlag { |
| 58 PaintLayerNoFlag = 0, | 57 PaintLayerNoFlag = 0, |
| 59 PaintLayerHaveTransparency = 1, | 58 PaintLayerHaveTransparency = 1, |
| 60 PaintLayerAppliedTransform = 1 << 1, | 59 PaintLayerAppliedTransform = 1 << 1, |
| 61 PaintLayerUncachedClipRects = 1 << 2, | 60 PaintLayerUncachedClipRects = 1 << 2, |
| 62 PaintLayerPaintingOverlayScrollbars = 1 << 3, | 61 PaintLayerPaintingOverlayScrollbars = 1 << 3, |
| 63 PaintLayerPaintingCompositingBackgroundPhase = 1 << 4, | 62 PaintLayerPaintingCompositingBackgroundPhase = 1 << 4, |
| 64 PaintLayerPaintingCompositingForegroundPhase = 1 << 5, | 63 PaintLayerPaintingCompositingForegroundPhase = 1 << 5, |
| 65 PaintLayerPaintingCompositingMaskPhase = 1 << 6, | 64 PaintLayerPaintingCompositingMaskPhase = 1 << 6, |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 bool clipToDirtyRect; | 99 bool clipToDirtyRect; |
| 101 bool ancestorHasClipPathClipping; | 100 bool ancestorHasClipPathClipping; |
| 102 | 101 |
| 103 private: | 102 private: |
| 104 const GlobalPaintFlags m_globalPaintFlags; | 103 const GlobalPaintFlags m_globalPaintFlags; |
| 105 }; | 104 }; |
| 106 | 105 |
| 107 } // namespace blink | 106 } // namespace blink |
| 108 | 107 |
| 109 #endif // PaintLayerPaintingInfo_h | 108 #endif // PaintLayerPaintingInfo_h |
| OLD | NEW |