| Index: gpu/command_buffer/common/mailbox_holder.h
|
| diff --git a/gpu/command_buffer/common/mailbox_holder.h b/gpu/command_buffer/common/mailbox_holder.h
|
| index 51c377dba4c2e794cf54172d37f759de941f194d..55d99a5a5c4c9bb9c030cdd6ecc9a0de504deef5 100644
|
| --- a/gpu/command_buffer/common/mailbox_holder.h
|
| +++ b/gpu/command_buffer/common/mailbox_holder.h
|
| @@ -9,6 +9,7 @@
|
| #include <string.h>
|
|
|
| #include "gpu/command_buffer/common/mailbox.h"
|
| +#include "gpu/command_buffer/common/sync_token.h"
|
| #include "gpu/gpu_export.h"
|
|
|
| namespace gpu {
|
| @@ -23,9 +24,11 @@ namespace gpu {
|
| struct GPU_EXPORT MailboxHolder {
|
| MailboxHolder();
|
| MailboxHolder(const gpu::Mailbox& mailbox,
|
| - uint32_t texture_target,
|
| - uint32_t sync_point);
|
| + uint32_t sync_point,
|
| + const gpu::SyncToken& sync_token,
|
| + uint32_t texture_target);
|
| gpu::Mailbox mailbox;
|
| + gpu::SyncToken sync_token;
|
| uint32_t texture_target;
|
| uint32_t sync_point;
|
| };
|
|
|