Index: third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp |
diff --git a/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp b/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp |
index 6a5716a24d348fc9837ebfed31807d3dadfad0b2..99c10e624e1c9ab499ccfcb1f60068fb29f6e3ca 100644 |
--- a/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp |
+++ b/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp |
@@ -433,10 +433,7 @@ |
gl->GenSyncTokenCHROMIUM(fenceSync, syncToken.GetData()); |
} |
mailboxInfo.m_mailbox = mailbox; |
- bool isOverlayCandidate = false; |
- bool secureOutputOnly = false; |
- *outMailbox = cc::TextureMailbox(mailbox, syncToken, GL_TEXTURE_2D, m_size, |
- isOverlayCandidate, secureOutputOnly); |
+ *outMailbox = cc::TextureMailbox(mailbox, syncToken, GL_TEXTURE_2D); |
gl->BindTexture(GL_TEXTURE_2D, 0); |
// Because we are changing the texture binding without going through skia, |