| Index: components/mus/gles2/gpu_impl.cc
|
| diff --git a/components/mus/gles2/gpu_impl.cc b/components/mus/gles2/gpu_impl.cc
|
| index 12b4042fdfa06debb9dc96a6f188199043bebbf3..e23add8b1e70ceedfe3a1c90a16d9dab4afe367f 100644
|
| --- a/components/mus/gles2/gpu_impl.cc
|
| +++ b/components/mus/gles2/gpu_impl.cc
|
| @@ -18,13 +18,13 @@ GpuImpl::GpuImpl(mojo::InterfaceRequest<Gpu> request,
|
| GpuImpl::~GpuImpl() {}
|
|
|
| void GpuImpl::CreateOffscreenGLES2Context(
|
| - mojo::InterfaceRequest<mojo::CommandBuffer> request) {
|
| + mojo::InterfaceRequest<mojom::CommandBuffer> request) {
|
| new CommandBufferImpl(request.Pass(), state_,
|
| make_scoped_ptr(new CommandBufferDriver(state_)));
|
| }
|
|
|
| void GpuImpl::GetGpuInfo(const GetGpuInfoCallback& callback) {
|
| - callback.Run(mojo::GpuInfo::From<gpu::GPUInfo>(state_->gpu_info()));
|
| + callback.Run(mojom::GpuInfo::From<gpu::GPUInfo>(state_->gpu_info()));
|
| }
|
|
|
| } // namespace mus
|
|
|