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

Unified Diff: cc/test/render_pass_test_utils.cc

Issue 1968363002: SurfaceAggregator should check whether output is secure when drawin (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | « cc/test/layer_test_common.h ('k') | cc/trees/layer_tree_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/render_pass_test_utils.cc
diff --git a/cc/test/render_pass_test_utils.cc b/cc/test/render_pass_test_utils.cc
index 01b03d60bb35544e8154b62a32630705e309993e..5152451b194dec8ee3573ada19bc653b3587d468 100644
--- a/cc/test/render_pass_test_utils.cc
+++ b/cc/test/render_pass_test_utils.cc
@@ -247,14 +247,15 @@ void AddOneOfEveryQuadType(RenderPass* to_pass,
to_pass->CreateAndAppendDrawQuad<TextureDrawQuad>();
texture_quad->SetNew(shared_state, rect, opaque_rect, visible_rect, resource1,
false, gfx::PointF(0.f, 0.f), gfx::PointF(1.f, 1.f),
- SK_ColorTRANSPARENT, vertex_opacity, false, false);
+ SK_ColorTRANSPARENT, vertex_opacity, false, false,
+ false);
TextureDrawQuad* mailbox_texture_quad =
to_pass->CreateAndAppendDrawQuad<TextureDrawQuad>();
mailbox_texture_quad->SetNew(shared_state, rect, opaque_rect, visible_rect,
resource8, false, gfx::PointF(0.f, 0.f),
gfx::PointF(1.f, 1.f), SK_ColorTRANSPARENT,
- vertex_opacity, false, false);
+ vertex_opacity, false, false, false);
TileDrawQuad* scaled_tile_quad =
to_pass->CreateAndAppendDrawQuad<TileDrawQuad>();
« no previous file with comments | « cc/test/layer_test_common.h ('k') | cc/trees/layer_tree_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698