Chromium Code Reviews| Index: chrome/common/metrics/proto/system_profile.proto |
| diff --git a/chrome/common/metrics/proto/system_profile.proto b/chrome/common/metrics/proto/system_profile.proto |
| index abeea2bb0f269a0cffb5d528b80a890ce25bf025..99546dfd966bb0ac65a16968a5f3a7e1d4567341 100644 |
| --- a/chrome/common/metrics/proto/system_profile.proto |
| +++ b/chrome/common/metrics/proto/system_profile.proto |
| @@ -83,7 +83,7 @@ message SystemProfileProto { |
| } |
| optional OS os = 5; |
| - // Next tag for Hardware: 14 |
| + // Next tag for Hardware: 16 |
| // Information on the user's hardware. |
| message Hardware { |
| // The CPU architecture (x86, PowerPC, x86_64, ...) |
| @@ -219,6 +219,16 @@ message SystemProfileProto { |
| repeated PairedDevice paired_device = 3; |
| } |
| optional Bluetooth bluetooth = 11; |
| + |
| + // Whether the internal display produces touch events. |
| + optional bool internal_display_supports_touch = 14; |
| + |
| + // Vendor ids and product ids of external touchscreens. |
| + message TouchScreen { |
| + optional uint32 vendor_id = 1; |
| + optional uint32 product_id = 2; |
|
Ilya Sherman
2014/01/08 21:45:33
nit: Please update these to be commented, to match
tdresser
2014/01/10 16:59:03
Done.
|
| + } |
| + repeated TouchScreen external_touchscreen = 15; |
| } |
| optional Hardware hardware = 6; |