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 607 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
618 message LoginScreenDomainAutoCompleteProto { | 618 message LoginScreenDomainAutoCompleteProto { |
619 // If this policy is not configured or set to a blank string, | 619 // If this policy is not configured or set to a blank string, |
620 // no autocomplete option during user sign-in flow will be shown. | 620 // no autocomplete option during user sign-in flow will be shown. |
621 // If this policy is set to a string representing a domain name, an | 621 // If this policy is set to a string representing a domain name, an |
622 // autocomplete option during user sign-in will be shown allowing the user | 622 // autocomplete option during user sign-in will be shown allowing the user |
623 // to type in only his user name without the domain name extension. The user | 623 // to type in only his user name without the domain name extension. The user |
624 // will be able to overwrite this domain name extension. | 624 // will be able to overwrite this domain name extension. |
625 optional string login_screen_domain_auto_complete = 1; | 625 optional string login_screen_domain_auto_complete = 1; |
626 } | 626 } |
627 | 627 |
| 628 // Settings that control whether a device would send system logs to the server. |
| 629 message DeviceLogUploadSettingsProto { |
| 630 // Whether the device should send system logs. The default is false. |
| 631 optional bool log_upload_enabled = 1 [default = false]; |
| 632 } |
| 633 |
628 message ChromeDeviceSettingsProto { | 634 message ChromeDeviceSettingsProto { |
629 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 635 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
630 optional UserWhitelistProto user_whitelist = 2; | 636 optional UserWhitelistProto user_whitelist = 2; |
631 optional GuestModeEnabledProto guest_mode_enabled = 3; | 637 optional GuestModeEnabledProto guest_mode_enabled = 3; |
632 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 | 638 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 |
633 [deprecated = true]; | 639 [deprecated = true]; |
634 optional CameraEnabledProto camera_enabled = 5; | 640 optional CameraEnabledProto camera_enabled = 5; |
635 optional ShowUserNamesOnSigninProto show_user_names = 6; | 641 optional ShowUserNamesOnSigninProto show_user_names = 6; |
636 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 642 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
637 optional AllowNewUsersProto allow_new_users = 8; | 643 optional AllowNewUsersProto allow_new_users = 8; |
(...skipping 22 matching lines...) Expand all Loading... |
660 optional LoginScreenPowerManagementProto login_screen_power_management = 29; | 666 optional LoginScreenPowerManagementProto login_screen_power_management = 29; |
661 optional SystemUse24HourClockProto use_24hour_clock = 30; | 667 optional SystemUse24HourClockProto use_24hour_clock = 30; |
662 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; | 668 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; |
663 optional SystemSettingsProto system_settings = 32; | 669 optional SystemSettingsProto system_settings = 32; |
664 optional SAMLSettingsProto saml_settings = 33; | 670 optional SAMLSettingsProto saml_settings = 33; |
665 optional RebootOnShutdownProto reboot_on_shutdown = 34; | 671 optional RebootOnShutdownProto reboot_on_shutdown = 34; |
666 optional DeviceHeartbeatSettingsProto device_heartbeat_settings = 35; | 672 optional DeviceHeartbeatSettingsProto device_heartbeat_settings = 35; |
667 optional ExtensionCacheSizeProto extension_cache_size = 36; | 673 optional ExtensionCacheSizeProto extension_cache_size = 36; |
668 optional LoginScreenDomainAutoCompleteProto | 674 optional LoginScreenDomainAutoCompleteProto |
669 login_screen_domain_auto_complete = 37; | 675 login_screen_domain_auto_complete = 37; |
| 676 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38; |
670 } | 677 } |
OLD | NEW |