| Index: services/ui/common/gpu_type_converters.cc
|
| diff --git a/services/ui/common/gpu_type_converters.cc b/services/ui/common/gpu_type_converters.cc
|
| index 9ee911a594b39d3d7a417822e56ebb62635573f2..f3873370d13cdeebb66beca19773b59943f63e59 100644
|
| --- a/services/ui/common/gpu_type_converters.cc
|
| +++ b/services/ui/common/gpu_type_converters.cc
|
| @@ -151,18 +151,4 @@ TypeConverter<gfx::GpuMemoryBufferHandle, ui::mojom::GpuMemoryBufferHandlePtr>::
|
| return result;
|
| }
|
|
|
| -// static
|
| -ui::mojom::GpuInfoPtr
|
| -TypeConverter<ui::mojom::GpuInfoPtr, gpu::GPUInfo>::Convert(
|
| - const gpu::GPUInfo& input) {
|
| - ui::mojom::GpuInfoPtr result(ui::mojom::GpuInfo::New());
|
| - result->vendor_id = input.gpu.vendor_id;
|
| - result->device_id = input.gpu.device_id;
|
| - result->vendor_info = mojo::String::From<std::string>(input.gl_vendor);
|
| - result->renderer_info = mojo::String::From<std::string>(input.gl_renderer);
|
| - result->driver_version =
|
| - mojo::String::From<std::string>(input.driver_version);
|
| - return result;
|
| -}
|
| -
|
| } // namespace mojo
|
|
|