| Index: services/ui/ws/gpu_service_proxy.h
|
| diff --git a/services/ui/ws/gpu_service_proxy.h b/services/ui/ws/gpu_service_proxy.h
|
| index c85b66f5f9cabdd228f351f5b02765b7a8441778..5687b2e383967025e35a2d4f35780a40ce4ede1e 100644
|
| --- a/services/ui/ws/gpu_service_proxy.h
|
| +++ b/services/ui/ws/gpu_service_proxy.h
|
| @@ -64,7 +64,12 @@ class GpuServiceProxy : public mojom::GpuService {
|
| mojo::BindingSet<mojom::GpuService> bindings_;
|
| gpu::GPUInfo gpu_info_;
|
| std::unique_ptr<MusGpuMemoryBufferManager> gpu_memory_buffer_manager_;
|
| - GpuMain gpu_main_;
|
| +
|
| + mojom::GpuMainPtr gpu_main_;
|
| +
|
| + // TODO(fsamuel): GpuServiceProxy should not be holding onto |gpu_main_impl|
|
| + // because that will live in another process soon.
|
| + std::unique_ptr<GpuMain> gpu_main_impl_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(GpuServiceProxy);
|
| };
|
|
|