summaryrefslogtreecommitdiffstats
path: root/cc/blink
diff options
context:
space:
mode:
authordcastagna <dcastagna@chromium.org>2016-03-08 15:45:48 -0800
committerCommit bot <commit-bot@chromium.org>2016-03-08 23:47:13 +0000
commit26563f4d0cc520ac94ee1e3141455a4014a35a7b (patch)
tree3a6b613620fd27701c871d957b1b3e79be3a80c4 /cc/blink
parent5241d81a41e319f8b1f4d9840cd8d1269b265788 (diff)
downloadchromium_src-26563f4d0cc520ac94ee1e3141455a4014a35a7b.zip
chromium_src-26563f4d0cc520ac94ee1e3141455a4014a35a7b.tar.gz
chromium_src-26563f4d0cc520ac94ee1e3141455a4014a35a7b.tar.bz2
Make TextureLayerImplTest comply with secure_output flag.
This patch adds a flag 'secure_output_only_' to TextureMailbox and a flag 'is_secure_output_' to the LayerTreeImpl. This flags are used by TextureLayerImpl to determine if it's secure to composite specific textures coming from a mailbox on a specific compositor. BUG=b/27173841,b/27174223 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1773923002 Cr-Commit-Position: refs/heads/master@{#379966}
Diffstat (limited to 'cc/blink')
-rw-r--r--cc/blink/web_external_texture_layer_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/blink/web_external_texture_layer_impl.cc b/cc/blink/web_external_texture_layer_impl.cc
index e97b50e..c2f2a45 100644
--- a/cc/blink/web_external_texture_layer_impl.cc
+++ b/cc/blink/web_external_texture_layer_impl.cc
@@ -94,7 +94,7 @@ bool WebExternalTextureLayerImpl::PrepareTextureMailbox(
*mailbox =
cc::TextureMailbox(name, sync_token, client_mailbox.textureTarget, size,
- client_mailbox.allowOverlay);
+ client_mailbox.allowOverlay, false);
}
mailbox->set_nearest_neighbor(client_mailbox.nearestNeighbor);