Chromium Code Reviews| Index: ui/compositor/paint_context.h |
| diff --git a/ui/compositor/paint_context.h b/ui/compositor/paint_context.h |
| index ee9134ed837f6bcbd7e7a669a05d43d2da8a93e5..96ebd68c992681e6ed07d742bada11b6cb58433f 100644 |
| --- a/ui/compositor/paint_context.h |
| +++ b/ui/compositor/paint_context.h |
| @@ -21,7 +21,7 @@ class Canvas; |
| class SkPictureRecorder; |
| namespace ui { |
| -class ClipTransformRecorder; |
| +class ClipRecorder; |
|
danakj
2015/11/23 23:20:30
forward declare TransformRecorder too
wkorman
2015/11/23 23:38:08
Done.
|
| class CompositingRecorder; |
| class PaintRecorder; |
| @@ -71,9 +71,10 @@ class COMPOSITOR_EXPORT PaintContext { |
| // The Recorder classes need access to the internal canvas and friends, but we |
| // don't want to expose them on this class so that people must go through the |
| // recorders to access them. |
| - friend class ClipTransformRecorder; |
| + friend class ClipRecorder; |
| friend class CompositingRecorder; |
| friend class PaintRecorder; |
| + friend class TransformRecorder; |
| // The Cache class also needs to access the DisplayItemList to append its |
| // cache contents. |
| friend class PaintCache; |