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

Unified Diff: cc/layers/painted_scrollbar_layer_impl.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/layers/nine_patch_layer_impl.cc ('k') | cc/layers/texture_layer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layers/painted_scrollbar_layer_impl.cc
diff --git a/cc/layers/painted_scrollbar_layer_impl.cc b/cc/layers/painted_scrollbar_layer_impl.cc
index 72027ed81b75070c10aaeb78c9eb423a38879b7f..8014576a4031a62f4603902a00456fbc9228b51d 100644
--- a/cc/layers/painted_scrollbar_layer_impl.cc
+++ b/cc/layers/painted_scrollbar_layer_impl.cc
@@ -112,7 +112,8 @@ void PaintedScrollbarLayerImpl::AppendQuads(
quad->SetNew(shared_quad_state, scaled_thumb_quad_rect, opaque_rect,
scaled_visible_thumb_quad_rect, thumb_resource_id,
premultipled_alpha, uv_top_left, uv_bottom_right,
- SK_ColorTRANSPARENT, opacity, flipped, nearest_neighbor);
+ SK_ColorTRANSPARENT, opacity, flipped, nearest_neighbor,
+ false);
ValidateQuadResources(quad);
}
@@ -132,7 +133,8 @@ void PaintedScrollbarLayerImpl::AppendQuads(
quad->SetNew(shared_quad_state, scaled_track_quad_rect, opaque_rect,
scaled_visible_track_quad_rect, track_resource_id,
premultipled_alpha, uv_top_left, uv_bottom_right,
- SK_ColorTRANSPARENT, opacity, flipped, nearest_neighbor);
+ SK_ColorTRANSPARENT, opacity, flipped, nearest_neighbor,
+ false);
ValidateQuadResources(quad);
}
}
« no previous file with comments | « cc/layers/nine_patch_layer_impl.cc ('k') | cc/layers/texture_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698