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

Unified Diff: components/view_manager/public/interfaces/quads.mojom

Issue 1175113010: cc: Rename visible_content_rect and content stuff on quads. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename-visible-content-rect: moreandroid Created 5 years, 6 months 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
« no previous file with comments | « components/view_manager/display_manager.cc ('k') | content/common/cc_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/view_manager/public/interfaces/quads.mojom
diff --git a/components/view_manager/public/interfaces/quads.mojom b/components/view_manager/public/interfaces/quads.mojom
index b3af3d5949f741a50a2965bd7499bf1e2a3aec16..ae482fd51ec4097d6b0d4502e0c15306cffe1a5b 100644
--- a/components/view_manager/public/interfaces/quads.mojom
+++ b/components/view_manager/public/interfaces/quads.mojom
@@ -183,14 +183,15 @@ enum SkXfermode {
};
struct SharedQuadState {
- // Transforms from quad's original content space to its target content space.
- Transform content_to_target_transform;
+ // Transforms quad rects into the target content space.
+ Transform quad_to_target_transform;
- // This size lives in the content space for the quad's originating layer.
- Size content_bounds;
+ // The size of the quads' originating layer in the space of the quad rects.
+ Size quad_layer_bounds;
- // This rect lives in the content space for the quad's originating layer.
- Rect visible_content_rect;
+ // The size of the visible area in the quads' originating layer, in the space
+ // of the quad rects.
+ Rect visible_quad_layer_rect;
// This rect lives in the target content space.
Rect clip_rect;
« no previous file with comments | « components/view_manager/display_manager.cc ('k') | content/common/cc_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698