| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef LayerClipRecorder_h | 5 #ifndef LayerClipRecorder_h |
| 6 #define LayerClipRecorder_h | 6 #define LayerClipRecorder_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/paint/PaintLayerPaintingInfo.h" | 9 #include "core/paint/PaintLayerPaintingInfo.h" |
| 10 #include "core/paint/PaintPhase.h" | 10 #include "core/paint/PaintPhase.h" |
| 11 #include "platform/graphics/paint/ClipDisplayItem.h" | 11 #include "platform/graphics/paint/ClipDisplayItem.h" |
| 12 #include "platform/graphics/paint/DisplayItem.h" | 12 #include "platform/graphics/paint/DisplayItem.h" |
| 13 #include "wtf/Vector.h" | 13 #include "platform/wtf/Vector.h" |
| 14 | 14 |
| 15 namespace blink { | 15 namespace blink { |
| 16 | 16 |
| 17 class ClipRect; | 17 class ClipRect; |
| 18 class GraphicsContext; | 18 class GraphicsContext; |
| 19 class LayoutBoxModelObject; | 19 class LayoutBoxModelObject; |
| 20 | 20 |
| 21 class CORE_EXPORT LayerClipRecorder { | 21 class CORE_EXPORT LayerClipRecorder { |
| 22 USING_FAST_MALLOC(LayerClipRecorder); | 22 USING_FAST_MALLOC(LayerClipRecorder); |
| 23 | 23 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 Vector<FloatRoundedRect>& rounded_rect_clips); | 63 Vector<FloatRoundedRect>& rounded_rect_clips); |
| 64 | 64 |
| 65 GraphicsContext& graphics_context_; | 65 GraphicsContext& graphics_context_; |
| 66 const LayoutBoxModelObject& layout_object_; | 66 const LayoutBoxModelObject& layout_object_; |
| 67 DisplayItem::Type clip_type_; | 67 DisplayItem::Type clip_type_; |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 } // namespace blink | 70 } // namespace blink |
| 71 | 71 |
| 72 #endif // LayerClipRecorder_h | 72 #endif // LayerClipRecorder_h |
| OLD | NEW |