| Index: services/ui/public/interfaces/gpu.mojom
|
| diff --git a/services/ui/public/interfaces/gpu.mojom b/services/ui/public/interfaces/gpu.mojom
|
| index 5c9102275669d372536dbe017dcebfffd478320c..13a0236c5cf774e6e6edc46bec892be549889f1e 100644
|
| --- a/services/ui/public/interfaces/gpu.mojom
|
| +++ b/services/ui/public/interfaces/gpu.mojom
|
| @@ -5,19 +5,12 @@
|
| module ui.mojom;
|
|
|
| import "services/ui/public/interfaces/command_buffer.mojom";
|
| -
|
| -struct GpuInfo {
|
| - uint32 vendor_id;
|
| - uint32 device_id;
|
| - string vendor_info;
|
| - string renderer_info;
|
| - string driver_version;
|
| -};
|
| +import "gpu/ipc/common/gpu_info.mojom";
|
|
|
| interface Gpu {
|
| // Creates a new offscreen OpenGL ES 2.0 context.
|
| CreateOffscreenGLES2Context(CommandBuffer& gles2_client);
|
|
|
| // Query Gpu information
|
| - GetGpuInfo() => (GpuInfo gpu_info);
|
| + GetGpuInfo() => (gpu.mojom.GpuInfo gpu_info);
|
| };
|
|
|