| Index: gpu/command_buffer/tests/gl_manager.cc
 | 
| diff --git a/gpu/command_buffer/tests/gl_manager.cc b/gpu/command_buffer/tests/gl_manager.cc
 | 
| index e8d6452d69cfc68c8f32a6923d4493c94c286651..1965ba0b57aa92ca32674dd946d96678a64e792c 100644
 | 
| --- a/gpu/command_buffer/tests/gl_manager.cc
 | 
| +++ b/gpu/command_buffer/tests/gl_manager.cc
 | 
| @@ -173,8 +173,7 @@ void GLManager::Initialize(const GLManager::Options& options) {
 | 
|        new GpuControlService(decoder_->GetContextGroup()->image_manager(),
 | 
|                              options.gpu_memory_buffer_factory,
 | 
|                              decoder_->GetContextGroup()->mailbox_manager(),
 | 
| -                            decoder_->GetQueryManager(),
 | 
| -                            decoder_->GetCapabilities()));
 | 
| +                            decoder_->GetQueryManager()));
 | 
|  
 | 
|    command_buffer_->SetPutOffsetChangeCallback(
 | 
|        base::Bind(&GLManager::PumpCommands, base::Unretained(this)));
 | 
| @@ -194,7 +193,8 @@ void GLManager::Initialize(const GLManager::Options& options) {
 | 
|        client_share_group,
 | 
|        transfer_buffer_.get(),
 | 
|        options.bind_generates_resource,
 | 
| -      gpu_control_.get()));
 | 
| +      gpu_control_.get(),
 | 
| +      decoder_->GetCapabilities()));
 | 
|  
 | 
|    ASSERT_TRUE(gles2_implementation_->Initialize(
 | 
|        kStartTransferBufferSize,
 | 
| 
 |