Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 module gpu.mojom; | |
| 6 | |
| 7 import "mojo/common/common_custom_types.mojom"; | |
| 8 | |
| 9 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.
| |
| 10 | |
| 11 enum CollectInfoResult { | |
| 12 kCollectInfoNone = 0, | |
| 13 kCollectInfoSuccess = 1, | |
| 14 kCollectInfoNonFatalFailure = 2, | |
| 15 kCollectInfoFatalFailure = 3 | |
| 16 }; | |
| 17 | |
| 18 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.
| |
| OLD | NEW |