OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
90 optional bool report_version_info = 1; | 90 optional bool report_version_info = 1; |
91 optional bool report_activity_times = 2; | 91 optional bool report_activity_times = 2; |
92 optional bool report_boot_mode = 3; | 92 optional bool report_boot_mode = 3; |
93 } | 93 } |
94 | 94 |
95 message EphemeralUsersEnabledProto { | 95 message EphemeralUsersEnabledProto { |
96 // Determines whether users should be treated as ephemeral. | 96 // Determines whether users should be treated as ephemeral. |
97 optional bool ephemeral_users_enabled = 1; | 97 optional bool ephemeral_users_enabled = 1; |
98 } | 98 } |
99 | 99 |
100 message ForcedLogoutTimeoutsProto { | |
101 // All timeouts are specified in milliseconds. | |
102 | |
103 // Specifies the duration of a session before the user is unconditionally | |
104 // logged out. | |
105 // If omitted or set to 0. No idle timeout will be performed. | |
Mattias Nissler (ping if slow)
2012/02/21 10:41:38
Please fix comment grammar, here and below.
pastarmovj
2012/02/22 14:22:27
Done.
| |
106 optional int64 forced_logout_timeout = 1; | |
107 // Specifies the duration of a warning countdown before the user is logged out | |
108 // because of the |forced_logout_timeout| has been set. | |
109 // Only used if |forced_logout_timeout| is specified. | |
110 optional int64 forced_logout_warning_duration = 2; | |
111 // Specifies the timeout before an idle user session is terminated. | |
112 // If omitted or set to 0. No idle timeout will be performed. | |
113 optional int64 idle_logout_timeout = 3; | |
114 // Specifies the duration of a warning countdown before the user is logged out | |
115 // because of idleness as specified by the |idle_logout_timeout| value. | |
116 // Only used if |idle_logout_timeout| is specified. | |
117 optional int64 idle_logout_warning_duration = 4; | |
rkc
2012/02/21 18:15:36
What's the difference between this and the forced_
pastarmovj
2012/02/22 14:22:27
I thought somewhere along the course of discussion
rkc
2012/02/22 17:39:07
Ah I see what you mean. No, we don't plan on havin
rkc
2012/02/23 21:10:13
Spoke with Josh; the forced_logout_warning_duratio
| |
118 } | |
119 | |
120 message ScreenSaverTimeout { | |
121 // Specified in milliseconds the timeout before the screen saver is activated | |
122 // on the login screen if no user activity present. Only respected if the | |
123 // device is in KIOSK mode. | |
124 // If omitted or set to 0. No idle timeout will be performed. | |
125 optional int64 screen_saver_timeout = 1; | |
126 } | |
127 | |
100 message ChromeDeviceSettingsProto { | 128 message ChromeDeviceSettingsProto { |
101 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 129 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
102 optional UserWhitelistProto user_whitelist = 2; | 130 optional UserWhitelistProto user_whitelist = 2; |
103 optional GuestModeEnabledProto guest_mode_enabled = 3; | 131 optional GuestModeEnabledProto guest_mode_enabled = 3; |
104 optional DeviceProxySettingsProto device_proxy_settings = 4; | 132 optional DeviceProxySettingsProto device_proxy_settings = 4; |
105 optional CameraEnabledProto camera_enabled = 5; | 133 optional CameraEnabledProto camera_enabled = 5; |
106 optional ShowUserNamesOnSigninProto show_user_names = 6; | 134 optional ShowUserNamesOnSigninProto show_user_names = 6; |
107 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 135 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
108 optional AllowNewUsersProto allow_new_users = 8; | 136 optional AllowNewUsersProto allow_new_users = 8; |
109 optional MetricsEnabledProto metrics_enabled = 9; | 137 optional MetricsEnabledProto metrics_enabled = 9; |
110 optional ReleaseChannelProto release_channel = 10; | 138 optional ReleaseChannelProto release_channel = 10; |
111 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; | 139 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; |
112 optional DeviceReportingProto device_reporting = 12; | 140 optional DeviceReportingProto device_reporting = 12; |
113 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; | 141 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; |
142 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 14; | |
143 optional ScreenSaverTimeout screen_saver_timeout = 15; | |
114 } | 144 } |
OLD | NEW |