| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // | 4 // |
| 5 // Stores information about the user's brower and system configuration. | 5 // Stores information about the user's brower and system configuration. |
| 6 // The system configuration fields are recorded once per client session. | 6 // The system configuration fields are recorded once per client session. |
| 7 | 7 |
| 8 syntax = "proto2"; | 8 syntax = "proto2"; |
| 9 | 9 |
| 10 option optimize_for = LITE_RUNTIME; | 10 option optimize_for = LITE_RUNTIME; |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 message TouchScreen { | 248 message TouchScreen { |
| 249 // Touch screen vendor id. | 249 // Touch screen vendor id. |
| 250 optional uint32 vendor_id = 1; | 250 optional uint32 vendor_id = 1; |
| 251 // Touch screen product id. | 251 // Touch screen product id. |
| 252 optional uint32 product_id = 2; | 252 optional uint32 product_id = 2; |
| 253 } | 253 } |
| 254 // Lists vendor and product ids of external touchscreens. | 254 // Lists vendor and product ids of external touchscreens. |
| 255 // Logged on ChromeOS only. | 255 // Logged on ChromeOS only. |
| 256 repeated TouchScreen external_touchscreen = 15; | 256 repeated TouchScreen external_touchscreen = 15; |
| 257 | 257 |
| 258 // Drive messages are logged on Windows 7+ only for now. | 258 // Drive messages are currently logged on Windows 7+, iOS, and Android. |
| 259 message Drive { | 259 message Drive { |
| 260 // Whether this drive incurs a time penalty when randomly accessed. This | 260 // Whether this drive incurs a time penalty when randomly accessed. This |
| 261 // should be true for spinning disks but false for SSDs or other | 261 // should be true for spinning disks but false for SSDs or other |
| 262 // flash-based drives. | 262 // flash-based drives. |
| 263 optional bool has_seek_penalty = 1; | 263 optional bool has_seek_penalty = 1; |
| 264 } | 264 } |
| 265 // The drive that the application executable was loaded from. | 265 // The drive that the application executable was loaded from. |
| 266 optional Drive app_drive = 16; | 266 optional Drive app_drive = 16; |
| 267 // The drive that the current user data directory was loaded from. | 267 // The drive that the current user data directory was loaded from. |
| 268 optional Drive user_data_drive = 17; | 268 optional Drive user_data_drive = 17; |
| (...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 727 // then HAS_OFFSTORE is reported. This should be kept in sync with the | 727 // then HAS_OFFSTORE is reported. This should be kept in sync with the |
| 728 // corresponding enum in chrome/browser/metrics/extensions_metrics_provider.cc | 728 // corresponding enum in chrome/browser/metrics/extensions_metrics_provider.cc |
| 729 enum ExtensionsState { | 729 enum ExtensionsState { |
| 730 NO_EXTENSIONS = 0; | 730 NO_EXTENSIONS = 0; |
| 731 NO_OFFSTORE_VERIFIED = 1; | 731 NO_OFFSTORE_VERIFIED = 1; |
| 732 NO_OFFSTORE_UNVERIFIED = 2; | 732 NO_OFFSTORE_UNVERIFIED = 2; |
| 733 HAS_OFFSTORE = 3; | 733 HAS_OFFSTORE = 3; |
| 734 } | 734 } |
| 735 optional ExtensionsState offstore_extensions_state = 19; | 735 optional ExtensionsState offstore_extensions_state = 19; |
| 736 } | 736 } |
| OLD | NEW |