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

Side by Side Diff: gpu/ipc/common/gpu_info.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 unified diff | Download patch
OLDNEW
(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";
Fady Samuel 2016/07/12 01:27:30 nit: Unnecessary include
Alex Z. 2016/07/12 13:58:15 Done.
8
9 struct GpuDevice {
Fady Samuel 2016/07/12 01:27:30 nit: Add comment about where the C++ type is defin
Alex Z. 2016/07/12 13:58:15 Done.
10 uint32 vendor_id;
Fady Samuel 2016/07/12 01:27:29 nit: spacing.
Alex Z. 2016/07/12 13:58:15 Done.
11 uint32 device_id;
12 bool active;
13 string vendor_string;
14 string device_string;
15 };
16
17 enum CollectInfoResult {
18 kCollectInfoNone = 0,
19 kCollectInfoSuccess = 1,
20 kCollectInfoNonFatalFailure = 2,
21 kCollectInfoFatalFailure = 3
22 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698