| 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 28 matching lines...) Expand all Loading... |
| 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 PaintLayerClipper_h | 45 #ifndef PaintLayerClipper_h |
| 46 #define PaintLayerClipper_h | 46 #define PaintLayerClipper_h |
| 47 | 47 |
| 48 #include "core/CoreExport.h" | 48 #include "core/CoreExport.h" |
| 49 #include "core/layout/ClipRectsCache.h" | 49 #include "core/paint/ClipRectsCache.h" |
| 50 | 50 |
| 51 #include "platform/graphics/paint/GeometryMapper.h" | 51 #include "platform/graphics/paint/GeometryMapper.h" |
| 52 #include "platform/scroll/ScrollTypes.h" | 52 #include "platform/scroll/ScrollTypes.h" |
| 53 | 53 |
| 54 #include "wtf/Allocator.h" | 54 #include "wtf/Allocator.h" |
| 55 | 55 |
| 56 namespace blink { | 56 namespace blink { |
| 57 | 57 |
| 58 class PaintLayer; | 58 class PaintLayer; |
| 59 | 59 |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 | 236 |
| 237 const PaintLayer& m_layer; | 237 const PaintLayer& m_layer; |
| 238 std::unique_ptr<GeometryMapper> m_geometryMapper; | 238 std::unique_ptr<GeometryMapper> m_geometryMapper; |
| 239 | 239 |
| 240 friend class PaintLayerClipperTest; | 240 friend class PaintLayerClipperTest; |
| 241 }; | 241 }; |
| 242 | 242 |
| 243 } // namespace blink | 243 } // namespace blink |
| 244 | 244 |
| 245 #endif // LayerClipper_h | 245 #endif // LayerClipper_h |
| OLD | NEW |