| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "services/ui/gpu/gpu_service_impl.h" | 5 #include "services/ui/gpu/gpu_service_impl.h" |
| 6 | 6 |
| 7 #include "services/shell/public/cpp/connection.h" | 7 #include "services/shell/public/cpp/connection.h" |
| 8 #include "services/ui/common/gpu_type_converters.h" | 8 #include "services/ui/common/gpu_type_converters.h" |
| 9 #include "services/ui/gpu/gpu_service_mus.h" | 9 #include "services/ui/gpu/gpu_service_mus.h" |
| 10 | 10 |
| 11 namespace ui { | 11 namespace ui { |
| 12 | 12 |
| 13 namespace { | 13 namespace { |
| 14 | 14 |
| 15 void EstablishGpuChannelDone( | 15 void EstablishGpuChannelDone( |
| 16 const mojom::GpuService::EstablishGpuChannelCallback& callback, | 16 const mojom::GpuService::EstablishGpuChannelCallback& callback, |
| 17 int32_t client_id, | 17 int32_t client_id, |
| 18 const IPC::ChannelHandle& channel_handle) { | 18 IPC::ChannelHandle* channel_handle) { |
| 19 // TODO(penghuang): Send the real GPUInfo to the client. | 19 // TODO(penghuang): Send the real GPUInfo to the client. |
| 20 callback.Run(client_id, mojom::ChannelHandle::From(channel_handle), | 20 mojo::MessagePipeHandle handle; |
| 21 if (channel_handle) |
| 22 handle = channel_handle->mojo_handle; |
| 23 callback.Run(client_id, |
| 24 mojo::ScopedMessagePipeHandle(handle), |
| 21 gpu::GPUInfo()); | 25 gpu::GPUInfo()); |
| 22 } | 26 } |
| 23 } | 27 } |
| 24 | 28 |
| 25 GpuServiceImpl::GpuServiceImpl( | 29 GpuServiceImpl::GpuServiceImpl( |
| 26 mojo::InterfaceRequest<mojom::GpuService> request) | 30 mojo::InterfaceRequest<mojom::GpuService> request) |
| 27 : binding_(this, std::move(request)) {} | 31 : binding_(this, std::move(request)) {} |
| 28 | 32 |
| 29 GpuServiceImpl::~GpuServiceImpl() {} | 33 GpuServiceImpl::~GpuServiceImpl() {} |
| 30 | 34 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 53 const mojom::GpuService::CreateGpuMemoryBufferCallback& callback) { | 57 const mojom::GpuService::CreateGpuMemoryBufferCallback& callback) { |
| 54 NOTIMPLEMENTED(); | 58 NOTIMPLEMENTED(); |
| 55 } | 59 } |
| 56 | 60 |
| 57 void GpuServiceImpl::DestroyGpuMemoryBuffer(mojom::GpuMemoryBufferIdPtr id, | 61 void GpuServiceImpl::DestroyGpuMemoryBuffer(mojom::GpuMemoryBufferIdPtr id, |
| 58 const gpu::SyncToken& sync_token) { | 62 const gpu::SyncToken& sync_token) { |
| 59 NOTIMPLEMENTED(); | 63 NOTIMPLEMENTED(); |
| 60 } | 64 } |
| 61 | 65 |
| 62 } // namespace ui | 66 } // namespace ui |
| OLD | NEW |