| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 , paintingRoot(inPaintingRoot) | 80 , paintingRoot(inPaintingRoot) |
| 81 , paintDirtyRect(inDirtyRect) | 81 , paintDirtyRect(inDirtyRect) |
| 82 , subPixelAccumulation(inSubPixelAccumulation) | 82 , subPixelAccumulation(inSubPixelAccumulation) |
| 83 , paintBehavior(inPaintBehavior) | 83 , paintBehavior(inPaintBehavior) |
| 84 , clipToDirtyRect(true) | 84 , clipToDirtyRect(true) |
| 85 { } | 85 { } |
| 86 DeprecatedPaintLayer* rootLayer; | 86 DeprecatedPaintLayer* rootLayer; |
| 87 LayoutObject* paintingRoot; // only paint descendants of this object | 87 LayoutObject* paintingRoot; // only paint descendants of this object |
| 88 LayoutRect paintDirtyRect; // relative to rootLayer; | 88 LayoutRect paintDirtyRect; // relative to rootLayer; |
| 89 LayoutSize subPixelAccumulation; | 89 LayoutSize subPixelAccumulation; |
| 90 IntSize scrollOffsetAccumulation; |
| 90 PaintBehavior paintBehavior; | 91 PaintBehavior paintBehavior; |
| 91 bool clipToDirtyRect; | 92 bool clipToDirtyRect; |
| 92 }; | 93 }; |
| 93 | 94 |
| 94 } // namespace blink | 95 } // namespace blink |
| 95 | 96 |
| 96 #endif // DeprecatedPaintLayerPaintingInfo_h | 97 #endif // DeprecatedPaintLayerPaintingInfo_h |
| OLD | NEW |