| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/paint/ClipRectsCache.h" | 49 #include "core/paint/ClipRectsCache.h" |
| 50 | 50 |
| 51 #include "platform/scroll/ScrollTypes.h" | 51 #include "platform/scroll/ScrollTypes.h" |
| 52 | 52 |
| 53 #include "wtf/Allocator.h" | 53 #include "platform/wtf/Allocator.h" |
| 54 | 54 |
| 55 namespace blink { | 55 namespace blink { |
| 56 | 56 |
| 57 class PaintLayer; | 57 class PaintLayer; |
| 58 class PropertyTreeState; | 58 class PropertyTreeState; |
| 59 | 59 |
| 60 enum ShouldRespectOverflowClipType { | 60 enum ShouldRespectOverflowClipType { |
| 61 kIgnoreOverflowClip, | 61 kIgnoreOverflowClip, |
| 62 kRespectOverflowClip | 62 kRespectOverflowClip |
| 63 }; | 63 }; |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 | 247 |
| 248 const PaintLayer& layer_; | 248 const PaintLayer& layer_; |
| 249 bool use_geometry_mapper_; | 249 bool use_geometry_mapper_; |
| 250 | 250 |
| 251 friend class PaintLayerClipperTest; | 251 friend class PaintLayerClipperTest; |
| 252 }; | 252 }; |
| 253 | 253 |
| 254 } // namespace blink | 254 } // namespace blink |
| 255 | 255 |
| 256 #endif // LayerClipper_h | 256 #endif // LayerClipper_h |
| OLD | NEW |