| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 // Policies to turn on portions of the device status reports. | 92 // Policies to turn on portions of the device status reports. |
| 93 message DeviceReportingProto { | 93 message DeviceReportingProto { |
| 94 optional bool report_version_info = 1 [default = true]; | 94 optional bool report_version_info = 1 [default = true]; |
| 95 optional bool report_activity_times = 2 [default = true]; | 95 optional bool report_activity_times = 2 [default = true]; |
| 96 optional bool report_boot_mode = 3 [default = true]; | 96 optional bool report_boot_mode = 3 [default = true]; |
| 97 optional bool report_location = 4 [default = false]; | 97 optional bool report_location = 4 [default = false]; |
| 98 optional bool report_network_interfaces = 5 [default = true]; | 98 optional bool report_network_interfaces = 5 [default = true]; |
| 99 optional bool report_users = 6 [default = true]; | 99 optional bool report_users = 6 [default = true]; |
| 100 optional bool report_hardware_status = 7 [default = true]; | 100 optional bool report_hardware_status = 7 [default = true]; |
| 101 optional bool report_session_status = 8 [default = true]; | 101 optional bool report_session_status = 8 [default = true]; |
| 102 optional bool report_os_update_status = 10 [default = false]; |
| 103 optional bool report_running_kiosk_app = 11 [default = false]; |
| 102 | 104 |
| 103 // Frequency to report device status, default to 3 hours. | 105 // Frequency to report device status, default to 3 hours. |
| 104 optional int64 device_status_frequency = 9 [default = 10800000]; | 106 optional int64 device_status_frequency = 9 [default = 10800000]; |
| 105 } | 107 } |
| 106 | 108 |
| 107 message EphemeralUsersEnabledProto { | 109 message EphemeralUsersEnabledProto { |
| 108 // Determines whether users should be treated as ephemeral. In ephemeral users | 110 // Determines whether users should be treated as ephemeral. In ephemeral users |
| 109 // mode, no cryptohome is created for the user, but a tmpfs mount is used | 111 // mode, no cryptohome is created for the user, but a tmpfs mount is used |
| 110 // instead such that upon logout all user state is discarded. | 112 // instead such that upon logout all user state is discarded. |
| 111 optional bool ephemeral_users_enabled = 1; | 113 optional bool ephemeral_users_enabled = 1; |
| (...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 763 optional AllowKioskAppControlChromeVersionProto | 765 optional AllowKioskAppControlChromeVersionProto |
| 764 allow_kiosk_app_control_chrome_version = 40; | 766 allow_kiosk_app_control_chrome_version = 40; |
| 765 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; | 767 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; |
| 766 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; | 768 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; |
| 767 optional AllowBluetoothProto allow_bluetooth = 43; | 769 optional AllowBluetoothProto allow_bluetooth = 43; |
| 768 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; | 770 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 44; |
| 769 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = | 771 optional LoginVideoCaptureAllowedUrlsProto login_video_capture_allowed_urls = |
| 770 45; | 772 45; |
| 771 optional LoginAppsProto login_apps = 46; | 773 optional LoginAppsProto login_apps = 46; |
| 772 } | 774 } |
| OLD | NEW |