Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(322)

Unified Diff: services/ui/public/interfaces/gpu.mojom

Issue 2133833002: gpu::GPUInfo::GPUDevice struct traits (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed unnecessary changes Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
};

Powered by Google App Engine
This is Rietveld 408576698