| 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 |
| 11 message DevicePolicyRefreshRateProto { | 11 message DevicePolicyRefreshRateProto { |
| 12 // In milliseconds. | 12 // In milliseconds. |
| 13 optional int64 policy_refresh_rate = 1; | 13 optional int64 device_policy_refresh_rate = 1; |
| 14 } | 14 } |
| 15 | 15 |
| 16 message UserWhitelistProto { | 16 message UserWhitelistProto { |
| 17 repeated string user_whitelist = 1; | 17 repeated string user_whitelist = 1; |
| 18 } | 18 } |
| 19 | 19 |
| 20 message AllowNewUsersProto { | 20 message AllowNewUsersProto { |
| 21 // Determines whether we allow arbitrary users to log into the device. | 21 // Determines whether we allow arbitrary users to log into the device. |
| 22 // Should default to true. | 22 // Should default to true. |
| 23 // This interacts with the UserWhitelistProto as follows: | 23 // This interacts with the UserWhitelistProto as follows: |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 optional string proxy_server = 2; | 65 optional string proxy_server = 2; |
| 66 optional string proxy_pac_url = 3; | 66 optional string proxy_pac_url = 3; |
| 67 optional string proxy_bypass_list = 4; | 67 optional string proxy_bypass_list = 4; |
| 68 } | 68 } |
| 69 | 69 |
| 70 message CameraEnabledProto { | 70 message CameraEnabledProto { |
| 71 optional bool camera_enabled = 1; | 71 optional bool camera_enabled = 1; |
| 72 } | 72 } |
| 73 | 73 |
| 74 message ChromeDeviceSettingsProto { | 74 message ChromeDeviceSettingsProto { |
| 75 optional DevicePolicyRefreshRateProto policy_refresh_rate = 1; | 75 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
| 76 optional UserWhitelistProto user_whitelist = 2; | 76 optional UserWhitelistProto user_whitelist = 2; |
| 77 optional GuestModeEnabledProto guest_mode_enabled = 3; | 77 optional GuestModeEnabledProto guest_mode_enabled = 3; |
| 78 optional DeviceProxySettingsProto device_proxy_settings = 4; | 78 optional DeviceProxySettingsProto device_proxy_settings = 4; |
| 79 optional CameraEnabledProto camera_enabled = 5; | 79 optional CameraEnabledProto camera_enabled = 5; |
| 80 optional ShowUserNamesOnSigninProto show_user_names = 6; | 80 optional ShowUserNamesOnSigninProto show_user_names = 6; |
| 81 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 81 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
| 82 optional AllowNewUsersProto allow_new_users = 8; | 82 optional AllowNewUsersProto allow_new_users = 8; |
| 83 } | 83 } |
| OLD | NEW |