| Index: components/mus/gles2/gpu_state.cc
|
| diff --git a/components/mus/gles2/gpu_state.cc b/components/mus/gles2/gpu_state.cc
|
| index 1ff542d1d5cee1dd52addc9218df9220cb526eb6..c7cf6dcde0b480e39c8680c65546e9b00cb04901 100644
|
| --- a/components/mus/gles2/gpu_state.cc
|
| +++ b/components/mus/gles2/gpu_state.cc
|
| @@ -52,20 +52,20 @@ void GpuState::InitializeOnGpuThread(base::WaitableEvent* event) {
|
| command_buffer_task_runner_ = new CommandBufferTaskRunner;
|
| driver_manager_.reset(new CommandBufferDriverManager);
|
| sync_point_manager_.reset(new gpu::SyncPointManager(true));
|
| - share_group_ = new gfx::GLShareGroup;
|
| + share_group_ = new gl::GLShareGroup;
|
| mailbox_manager_ = new gpu::gles2::MailboxManagerImpl;
|
|
|
| // TODO(penghuang): investigate why gpu::CollectBasicGraphicsInfo() failed on
|
| // windows remote desktop.
|
| - const gfx::GLImplementation impl = gfx::GetGLImplementation();
|
| - if (impl != gfx::kGLImplementationNone &&
|
| - impl != gfx::kGLImplementationOSMesaGL &&
|
| - impl != gfx::kGLImplementationMockGL) {
|
| + const gl::GLImplementation impl = gl::GetGLImplementation();
|
| + if (impl != gl::kGLImplementationNone &&
|
| + impl != gl::kGLImplementationOSMesaGL &&
|
| + impl != gl::kGLImplementationMockGL) {
|
| gpu::CollectInfoResult result = gpu::CollectBasicGraphicsInfo(&gpu_info_);
|
| LOG_IF(ERROR, result != gpu::kCollectInfoSuccess)
|
| << "Collect basic graphics info failed!";
|
| }
|
| - if (impl != gfx::kGLImplementationNone) {
|
| + if (impl != gl::kGLImplementationNone) {
|
| gpu::CollectInfoResult result = gpu::CollectContextGraphicsInfo(&gpu_info_);
|
| LOG_IF(ERROR, result != gpu::kCollectInfoSuccess)
|
| << "Collect context graphics info failed!";
|
|
|