| Index: cc/trees/layer_tree_host_unittest_copyrequest.cc
|
| diff --git a/cc/trees/layer_tree_host_unittest_copyrequest.cc b/cc/trees/layer_tree_host_unittest_copyrequest.cc
|
| index c06f345ef17f98c5aa0d92f226bbca19c8ebd0e1..3470b160808254878af518dabcd82041ae1e0abb 100644
|
| --- a/cc/trees/layer_tree_host_unittest_copyrequest.cc
|
| +++ b/cc/trees/layer_tree_host_unittest_copyrequest.cc
|
| @@ -804,8 +804,9 @@ class LayerTreeHostCopyRequestTestProvideTexture
|
| base::Unretained(this)));
|
|
|
| gpu::Mailbox mailbox;
|
| - external_context_provider_->Context3d()->genMailboxCHROMIUM(mailbox.name);
|
| - sync_point_ = external_context_provider_->Context3d()->insertSyncPoint();
|
| + gpu::gles2::GLES2Interface* gl = external_context_provider_->ContextGL();
|
| + gl->GenMailboxCHROMIUM(mailbox.name);
|
| + sync_point_ = gl->InsertSyncPointCHROMIUM();
|
| request->SetTextureMailbox(TextureMailbox(mailbox, sync_point_));
|
| EXPECT_TRUE(request->has_texture_mailbox());
|
|
|
|
|