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

Unified Diff: webkit/compositor_bindings/WebExternalTextureLayerImpl.cpp

Issue 11035020: Renamed LayerChromium::opaque to LayerChromium::contentsOpaque. Having both opaque and opacity on t… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 2 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/WebExternalTextureLayerImpl.cpp
diff --git a/webkit/compositor_bindings/WebExternalTextureLayerImpl.cpp b/webkit/compositor_bindings/WebExternalTextureLayerImpl.cpp
index 302ce5b10b6365a640ac2b8c6865257e64f90866..b3cdadfa778eb0648f486c7b3860a35d946b8c07 100644
--- a/webkit/compositor_bindings/WebExternalTextureLayerImpl.cpp
+++ b/webkit/compositor_bindings/WebExternalTextureLayerImpl.cpp
@@ -61,7 +61,7 @@ void WebExternalTextureLayerImpl::setUVRect(const WebFloatRect& rect)
void WebExternalTextureLayerImpl::setOpaque(bool opaque)
{
- static_cast<TextureLayerChromium*>(m_layer->layer())->setOpaque(opaque);
+ static_cast<TextureLayerChromium*>(m_layer->layer())->setContentsOpaque(opaque);
}
void WebExternalTextureLayerImpl::setPremultipliedAlpha(bool premultipliedAlpha)

Powered by Google App Engine
This is Rietveld 408576698