| Index: cc/ipc/copy_output_result.mojom
|
| diff --git a/cc/ipc/copy_output_result.mojom b/cc/ipc/copy_output_result.mojom
|
| index a925e10d6b4986a1512ecd4820c1c98fc6fce7cb..8faff238585b2ac7df10aebb7fa1a87468df2305 100644
|
| --- a/cc/ipc/copy_output_result.mojom
|
| +++ b/cc/ipc/copy_output_result.mojom
|
| @@ -5,6 +5,7 @@
|
| module cc.mojom;
|
|
|
| import "cc/ipc/texture_mailbox.mojom";
|
| +import "cc/ipc/texture_mailbox_releaser.mojom";
|
| import "skia/public/interfaces/bitmap.mojom";
|
| import "ui/gfx/geometry/mojo/geometry.mojom";
|
|
|
| @@ -12,5 +13,10 @@ import "ui/gfx/geometry/mojo/geometry.mojom";
|
| struct CopyOutputResult {
|
| gfx.mojom.Size size;
|
| skia.mojom.Bitmap? bitmap;
|
| - cc.mojom.TextureMailbox texture_mailbox;
|
| + TextureMailboxWithRelease? texture_mailbox;
|
| +};
|
| +
|
| +struct TextureMailboxWithRelease {
|
| + TextureMailbox texture_mailbox;
|
| + TextureMailboxReleaser releaser;
|
| };
|
|
|