Index: gpu/ipc/common/gpu_info.mojom |
diff --git a/gpu/ipc/common/gpu_info.mojom b/gpu/ipc/common/gpu_info.mojom |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b7f71d6fe0c1015bbf4ee0cc008fefc4a2aa8ce5 |
--- /dev/null |
+++ b/gpu/ipc/common/gpu_info.mojom |
@@ -0,0 +1,18 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+module gpu.mojom; |
+ |
+import "mojo/common/common_custom_types.mojom"; |
+ |
+struct GpuDevice {}; |
Fady Samuel
2016/07/08 18:47:56
Let's not land incomplete things here. Please remo
Alex Z.
2016/07/12 13:58:15
Acknowledged.
|
+ |
+enum CollectInfoResult { |
+ kCollectInfoNone = 0, |
+ kCollectInfoSuccess = 1, |
+ kCollectInfoNonFatalFailure = 2, |
+ kCollectInfoFatalFailure = 3 |
+}; |
+ |
+struct GpuInfo {}; |
Fady Samuel
2016/07/08 18:47:56
Let's not land incomplete things here. Please remo
Alex Z.
2016/07/12 13:58:15
Acknowledged.
|