| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 ClipPathClipper_h | 5 #ifndef ClipPathClipper_h |
| 6 #define ClipPathClipper_h | 6 #define ClipPathClipper_h |
| 7 | 7 |
| 8 #include "platform/graphics/paint/ClipPathRecorder.h" | 8 #include "platform/graphics/paint/ClipPathRecorder.h" |
| 9 #include "platform/graphics/paint/CompositingRecorder.h" | 9 #include "platform/graphics/paint/CompositingRecorder.h" |
| 10 #include "wtf/Optional.h" | 10 #include "platform/wtf/Optional.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 class ClipPathOperation; | 14 class ClipPathOperation; |
| 15 class FloatPoint; | 15 class FloatPoint; |
| 16 class FloatRect; | 16 class FloatRect; |
| 17 class GraphicsContext; | 17 class GraphicsContext; |
| 18 class LayoutSVGResourceClipper; | 18 class LayoutSVGResourceClipper; |
| 19 class LayoutObject; | 19 class LayoutObject; |
| 20 | 20 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 // TODO(pdr): This pattern should be cleaned up so that the recorders are just | 54 // TODO(pdr): This pattern should be cleaned up so that the recorders are just |
| 55 // on the stack. | 55 // on the stack. |
| 56 Optional<ClipPathRecorder> clip_path_recorder_; | 56 Optional<ClipPathRecorder> clip_path_recorder_; |
| 57 Optional<CompositingRecorder> mask_clip_recorder_; | 57 Optional<CompositingRecorder> mask_clip_recorder_; |
| 58 Optional<CompositingRecorder> mask_content_recorder_; | 58 Optional<CompositingRecorder> mask_content_recorder_; |
| 59 }; | 59 }; |
| 60 | 60 |
| 61 } // namespace blink | 61 } // namespace blink |
| 62 | 62 |
| 63 #endif // ClipPathClipper_h | 63 #endif // ClipPathClipper_h |
| OLD | NEW |