Chromium Code Reviews| 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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 238 } | 238 } |
| 239 | 239 |
| 240 message AllowRedeemChromeOsRegistrationOffersProto { | 240 message AllowRedeemChromeOsRegistrationOffersProto { |
| 241 // Chrome OS Registration service provides way for chromeos device users | 241 // Chrome OS Registration service provides way for chromeos device users |
| 242 // to redeem electronic offers provided by service provider. | 242 // to redeem electronic offers provided by service provider. |
| 243 // This value determines if users are allowed to redeem offers through | 243 // This value determines if users are allowed to redeem offers through |
| 244 // Chrome OS Registration service. | 244 // Chrome OS Registration service. |
| 245 optional bool allow_redeem_offers = 1 [default = true]; | 245 optional bool allow_redeem_offers = 1 [default = true]; |
| 246 } | 246 } |
| 247 | 247 |
| 248 message StartUpFlagsProto { | |
| 249 // The list of flags to be applied to chrome on start-up (back up store for | |
| 250 // owner set flags in about:flags). | |
| 251 repeated string flags = 1; | |
| 252 } | |
| 253 | |
| 248 message ChromeDeviceSettingsProto { | 254 message ChromeDeviceSettingsProto { |
| 249 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 255 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
| 250 optional UserWhitelistProto user_whitelist = 2; | 256 optional UserWhitelistProto user_whitelist = 2; |
| 251 optional GuestModeEnabledProto guest_mode_enabled = 3; | 257 optional GuestModeEnabledProto guest_mode_enabled = 3; |
| 252 optional DeviceProxySettingsProto device_proxy_settings = 4; | 258 optional DeviceProxySettingsProto device_proxy_settings = 4; |
| 253 optional CameraEnabledProto camera_enabled = 5; | 259 optional CameraEnabledProto camera_enabled = 5; |
| 254 optional ShowUserNamesOnSigninProto show_user_names = 6; | 260 optional ShowUserNamesOnSigninProto show_user_names = 6; |
| 255 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 261 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
| 256 optional AllowNewUsersProto allow_new_users = 8; | 262 optional AllowNewUsersProto allow_new_users = 8; |
| 257 optional MetricsEnabledProto metrics_enabled = 9; | 263 optional MetricsEnabledProto metrics_enabled = 9; |
| 258 optional ReleaseChannelProto release_channel = 10; | 264 optional ReleaseChannelProto release_channel = 10; |
| 259 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; | 265 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; |
| 260 optional DeviceReportingProto device_reporting = 12; | 266 optional DeviceReportingProto device_reporting = 12; |
| 261 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; | 267 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; |
| 262 optional AppPackProto app_pack = 14; | 268 optional AppPackProto app_pack = 14; |
| 263 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; | 269 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; |
| 264 optional ScreenSaverProto login_screen_saver = 16; | 270 optional ScreenSaverProto login_screen_saver = 16; |
| 265 optional AutoUpdateSettingsProto auto_update_settings = 17; | 271 optional AutoUpdateSettingsProto auto_update_settings = 17; |
| 266 optional StartUpUrlsProto start_up_urls = 18; | 272 optional StartUpUrlsProto start_up_urls = 18; |
| 267 optional PinnedAppsProto pinned_apps = 19; | 273 optional PinnedAppsProto pinned_apps = 19; |
| 268 optional SystemTimezoneProto system_timezone = 20; | 274 optional SystemTimezoneProto system_timezone = 20; |
| 269 optional DeviceLocalAccountsProto device_local_accounts = 21; | 275 optional DeviceLocalAccountsProto device_local_accounts = 21; |
| 270 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; | 276 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; |
| 277 optional StartUpFlagsProto start_up_flags = 23; | |
|
Joao da Silva
2013/03/05 17:46:30
This should be added to policy_templates.json too.
pastarmovj
2013/03/06 17:28:31
Done.
| |
| 271 } | 278 } |
| OLD | NEW |