| Index: cc/output/texture_mailbox_deleter_unittest.cc
|
| diff --git a/cc/output/texture_mailbox_deleter_unittest.cc b/cc/output/texture_mailbox_deleter_unittest.cc
|
| index 37b971237257c633f6fb02a10a24e2cfd088671b..84e7d46ccb6bd8172686167a1e53910c31ecf0aa 100644
|
| --- a/cc/output/texture_mailbox_deleter_unittest.cc
|
| +++ b/cc/output/texture_mailbox_deleter_unittest.cc
|
| @@ -41,7 +41,7 @@ TEST(TextureMailboxDeleterTest, Destroy) {
|
|
|
| // Run the scoped release callback before destroying it, but it won't do
|
| // anything.
|
| - cb->Run(0, false);
|
| + cb->Run(gpu::SyncToken(), false);
|
| }
|
|
|
| TEST(TextureMailboxDeleterTest, NullTaskRunner) {
|
| @@ -62,7 +62,7 @@ TEST(TextureMailboxDeleterTest, NullTaskRunner) {
|
| EXPECT_FALSE(context_provider->HasOneRef());
|
| EXPECT_EQ(1u, context_provider->TestContext3d()->NumTextures());
|
|
|
| - cb->Run(0, false);
|
| + cb->Run(gpu::SyncToken(), false);
|
|
|
| // With no task runner the callback will immediately drops its ref on the
|
| // ContextProvider and delete the texture.
|
|
|