Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(767)

Unified Diff: ui/compositor/paint_context.h

Issue 1470123002: Split ClipTransformRecorder into {Clip,Transform}Recorder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698