| Index: webkit/compositor_bindings/web_compositor_support_impl.cc
|
| diff --git a/webkit/compositor_bindings/web_compositor_support_impl.cc b/webkit/compositor_bindings/web_compositor_support_impl.cc
|
| index caca2cb6e95b93efc982419179404b88295edc7b..dfa2b1b8e9a055595aa01e7c257cee498b37baa8 100644
|
| --- a/webkit/compositor_bindings/web_compositor_support_impl.cc
|
| +++ b/webkit/compositor_bindings/web_compositor_support_impl.cc
|
| @@ -57,7 +57,13 @@ WebContentLayer* WebCompositorSupportImpl::createContentLayer(
|
|
|
| WebExternalTextureLayer* WebCompositorSupportImpl::createExternalTextureLayer(
|
| WebExternalTextureLayerClient* client) {
|
| - return new WebExternalTextureLayerImpl(client);
|
| + return new WebExternalTextureLayerImpl(client, false);
|
| +}
|
| +
|
| +WebExternalTextureLayer*
|
| +WebCompositorSupportImpl::createExternalTextureLayerForMailbox(
|
| + WebExternalTextureLayerClient* client) {
|
| + return new WebExternalTextureLayerImpl(client, true);
|
| }
|
|
|
| WebKit::WebImageLayer* WebCompositorSupportImpl::createImageLayer() {
|
|
|