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

Unified Diff: cc/layers/nine_patch_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/layer_impl.cc ('k') | cc/layers/painted_scrollbar_layer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layers/nine_patch_layer_impl.cc
diff --git a/cc/layers/nine_patch_layer_impl.cc b/cc/layers/nine_patch_layer_impl.cc
index 039adb371a312d58de3f039d98b6f146744dfcbf..731837f7a14bc2da0336c77368c87dd0c0f989d5 100644
--- a/cc/layers/nine_patch_layer_impl.cc
+++ b/cc/layers/nine_patch_layer_impl.cc
@@ -225,7 +225,7 @@ void NinePatchLayerImpl::AppendQuads(
quad->SetNew(shared_quad_state, layer_top_left, opaque_rect, visible_rect,
resource, premultiplied_alpha, uv_top_left.origin(),
uv_top_left.bottom_right(), SK_ColorTRANSPARENT,
- vertex_opacity, flipped, nearest_neighbor_);
+ vertex_opacity, flipped, nearest_neighbor_, false);
ValidateQuadResources(quad);
}
@@ -239,7 +239,7 @@ void NinePatchLayerImpl::AppendQuads(
quad->SetNew(shared_quad_state, layer_top_right, opaque_rect, visible_rect,
resource, premultiplied_alpha, uv_top_right.origin(),
uv_top_right.bottom_right(), SK_ColorTRANSPARENT,
- vertex_opacity, flipped, nearest_neighbor_);
+ vertex_opacity, flipped, nearest_neighbor_, false);
ValidateQuadResources(quad);
}
@@ -254,7 +254,7 @@ void NinePatchLayerImpl::AppendQuads(
visible_rect, resource, premultiplied_alpha,
uv_bottom_left.origin(), uv_bottom_left.bottom_right(),
SK_ColorTRANSPARENT, vertex_opacity, flipped,
- nearest_neighbor_);
+ nearest_neighbor_, false);
ValidateQuadResources(quad);
}
@@ -269,7 +269,7 @@ void NinePatchLayerImpl::AppendQuads(
visible_rect, resource, premultiplied_alpha,
uv_bottom_right.origin(), uv_bottom_right.bottom_right(),
SK_ColorTRANSPARENT, vertex_opacity, flipped,
- nearest_neighbor_);
+ nearest_neighbor_, false);
ValidateQuadResources(quad);
}
@@ -283,7 +283,7 @@ void NinePatchLayerImpl::AppendQuads(
quad->SetNew(shared_quad_state, layer_top, opaque_rect, visible_rect,
resource, premultiplied_alpha, uv_top.origin(),
uv_top.bottom_right(), SK_ColorTRANSPARENT, vertex_opacity,
- flipped, nearest_neighbor_);
+ flipped, nearest_neighbor_, false);
ValidateQuadResources(quad);
}
@@ -297,7 +297,7 @@ void NinePatchLayerImpl::AppendQuads(
quad->SetNew(shared_quad_state, layer_left, opaque_rect, visible_rect,
resource, premultiplied_alpha, uv_left.origin(),
uv_left.bottom_right(), SK_ColorTRANSPARENT, vertex_opacity,
- flipped, nearest_neighbor_);
+ flipped, nearest_neighbor_, false);
ValidateQuadResources(quad);
}
@@ -311,7 +311,7 @@ void NinePatchLayerImpl::AppendQuads(
quad->SetNew(shared_quad_state, layer_right, opaque_rect, layer_right,
resource, premultiplied_alpha, uv_right.origin(),
uv_right.bottom_right(), SK_ColorTRANSPARENT, vertex_opacity,
- flipped, nearest_neighbor_);
+ flipped, nearest_neighbor_, false);
ValidateQuadResources(quad);
}
@@ -325,7 +325,7 @@ void NinePatchLayerImpl::AppendQuads(
quad->SetNew(shared_quad_state, layer_bottom, opaque_rect, visible_rect,
resource, premultiplied_alpha, uv_bottom.origin(),
uv_bottom.bottom_right(), SK_ColorTRANSPARENT, vertex_opacity,
- flipped, nearest_neighbor_);
+ flipped, nearest_neighbor_, false);
ValidateQuadResources(quad);
}
@@ -340,7 +340,7 @@ void NinePatchLayerImpl::AppendQuads(
quad->SetNew(shared_quad_state, layer_center, opaque_rect, visible_rect,
resource, premultiplied_alpha, uv_center.origin(),
uv_center.bottom_right(), SK_ColorTRANSPARENT,
- vertex_opacity, flipped, nearest_neighbor_);
+ vertex_opacity, flipped, nearest_neighbor_, false);
ValidateQuadResources(quad);
}
}
« no previous file with comments | « cc/layers/layer_impl.cc ('k') | cc/layers/painted_scrollbar_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698