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

Unified Diff: webkit/compositor_bindings/web_compositor_support_impl.cc

Issue 12374028: Allow WebExternalTextureLayerClient to work with mailboxes. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 9 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
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 6af6495a7daac2cf7a035812ead59ba54a5bdcdc..8e84aa3ef2516b16d55abd1ef4b4dca8ebf38ec4 100644
--- a/webkit/compositor_bindings/web_compositor_support_impl.cc
+++ b/webkit/compositor_bindings/web_compositor_support_impl.cc
@@ -98,8 +98,8 @@ WebContentLayer* WebCompositorSupportImpl::createContentLayer(
}
WebExternalTextureLayer* WebCompositorSupportImpl::createExternalTextureLayer(
- WebExternalTextureLayerClient* client) {
- return new WebKit::WebExternalTextureLayerImpl(client);
+ WebExternalTextureLayerClient* client, bool mailbox) {
+ return new WebKit::WebExternalTextureLayerImpl(client, mailbox);
}
WebKit::WebImageLayer* WebCompositorSupportImpl::createImageLayer() {

Powered by Google App Engine
This is Rietveld 408576698