| 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 70a7db9d2faa26fc82b0978d7a24de21a7025797..206d21dd948a0dbb63449fc5559ab0a5ffefa848 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp
|
| @@ -432,7 +432,10 @@ bool Canvas2DLayerBridge::prepareMailboxFromImage(
|
| gl->GenSyncTokenCHROMIUM(fenceSync, syncToken.GetData());
|
| }
|
| mailboxInfo.m_mailbox = mailbox;
|
| - *outMailbox = cc::TextureMailbox(mailbox, syncToken, GL_TEXTURE_2D);
|
| + bool isOverlayCandidate = false;
|
| + bool secureOutputOnly = false;
|
| + *outMailbox = cc::TextureMailbox(mailbox, syncToken, GL_TEXTURE_2D, m_size,
|
| + isOverlayCandidate, secureOutputOnly);
|
|
|
| gl->BindTexture(GL_TEXTURE_2D, 0);
|
| // Because we are changing the texture binding without going through skia,
|
|
|