Index: gpu/command_buffer/common/mailbox_holder.cc |
diff --git a/gpu/command_buffer/common/mailbox_holder.cc b/gpu/command_buffer/common/mailbox_holder.cc |
index 87dec36fe23fb4a875c967753d5ee07c54107c1d..cd4c710dd7ae1e609179f11fe05007cb86fdc2b6 100644 |
--- a/gpu/command_buffer/common/mailbox_holder.cc |
+++ b/gpu/command_buffer/common/mailbox_holder.cc |
@@ -8,10 +8,12 @@ namespace gpu { |
MailboxHolder::MailboxHolder() : texture_target(0), sync_point(0) {} |
-MailboxHolder::MailboxHolder(const Mailbox& mailbox, |
- uint32_t texture_target, |
- uint32_t sync_point) |
+MailboxHolder::MailboxHolder(const gpu::Mailbox& mailbox, |
+ uint32_t sync_point, |
+ const gpu::SyncToken& sync_token, |
+ uint32_t texture_target) |
: mailbox(mailbox), |
+ sync_token(sync_token), |
texture_target(texture_target), |
sync_point(sync_point) {} |