| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 syntax = "proto2"; | 5 syntax = "proto2"; |
| 6 | 6 |
| 7 option optimize_for = LITE_RUNTIME; | 7 option optimize_for = LITE_RUNTIME; |
| 8 | 8 |
| 9 package enterprise_management; | 9 package enterprise_management; |
| 10 | 10 |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 message DeviceStatusReportRequest { | 243 message DeviceStatusReportRequest { |
| 244 optional string os_version = 1; | 244 optional string os_version = 1; |
| 245 optional string firmware_version = 2; | 245 optional string firmware_version = 2; |
| 246 | 246 |
| 247 // "Validated", "Dev". Same as verified mode. | 247 // "Validated", "Dev". Same as verified mode. |
| 248 // If the mode is unknown, this field should not be set. | 248 // If the mode is unknown, this field should not be set. |
| 249 optional string boot_mode = 3; | 249 optional string boot_mode = 3; |
| 250 | 250 |
| 251 // Device active times collection since last report rpc call. | 251 // Device active times collection since last report rpc call. |
| 252 repeated TimePeriod active_time = 4; | 252 repeated TimePeriod active_time = 4; |
| 253 |
| 254 // The browser version string as shown in the About dialog. |
| 255 optional string browser_version = 5; |
| 253 } | 256 } |
| 254 | 257 |
| 255 // Report session (a user on one device) level status. | 258 // Report session (a user on one device) level status. |
| 256 message SessionStatusReportRequest { | 259 message SessionStatusReportRequest { |
| 257 // Installed apps for this user on this device. | 260 // Installed apps for this user on this device. |
| 258 repeated string installed_app_id = 1; | 261 repeated string installed_app_id = 1; |
| 259 | 262 |
| 260 // Installed extensions for this user on this device. | 263 // Installed extensions for this user on this device. |
| 261 repeated string installed_extension_id = 2; | 264 repeated string installed_extension_id = 2; |
| 262 | 265 |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 | 416 |
| 414 // Device status report response. | 417 // Device status report response. |
| 415 optional DeviceStatusReportResponse device_status_report_response = 6; | 418 optional DeviceStatusReportResponse device_status_report_response = 6; |
| 416 | 419 |
| 417 // Session status report response. | 420 // Session status report response. |
| 418 optional SessionStatusReportResponse session_status_report_response = 7; | 421 optional SessionStatusReportResponse session_status_report_response = 7; |
| 419 | 422 |
| 420 // Auto-enrollment detection response. | 423 // Auto-enrollment detection response. |
| 421 optional DeviceAutoEnrollmentResponse auto_enrollment_response = 8; | 424 optional DeviceAutoEnrollmentResponse auto_enrollment_response = 8; |
| 422 } | 425 } |
| OLD | NEW |