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 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
603 message DeviceHeartbeatSettingsProto { | 603 message DeviceHeartbeatSettingsProto { |
604 // Whether the device should send heartbeat messages. The default is false. | 604 // Whether the device should send heartbeat messages. The default is false. |
605 optional bool heartbeat_enabled = 1 [default = false]; | 605 optional bool heartbeat_enabled = 1 [default = false]; |
606 | 606 |
607 // How frequently devices send heartbeats back to server. The unit is in | 607 // How frequently devices send heartbeats back to server. The unit is in |
608 // milliseconds. The default is 2 minutes. | 608 // milliseconds. The default is 2 minutes. |
609 optional int64 heartbeat_frequency = 2 [default = 120000]; | 609 optional int64 heartbeat_frequency = 2 [default = 120000]; |
610 } | 610 } |
611 | 611 |
612 message ExtensionCacheSizeProto { | 612 message ExtensionCacheSizeProto { |
613 // Specifies the maximum extension cache size, in bytes. | 613 // Specifies the maximum extension cache size, in bytes. The default is 256 |
| 614 // MiB. The minimum allowed value is 1 MiB, smaller values will get ignored. |
614 optional int64 extension_cache_size = 1; | 615 optional int64 extension_cache_size = 1; |
615 } | 616 } |
616 | 617 |
617 message LoginScreenDomainAutoCompleteProto { | 618 message LoginScreenDomainAutoCompleteProto { |
618 // 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, |
619 // no autocomplete option during user sign-in flow will be shown. | 620 // no autocomplete option during user sign-in flow will be shown. |
620 // 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 |
621 // 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 |
622 // 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 |
623 // will be able to overwrite this domain name extension. | 624 // will be able to overwrite this domain name extension. |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
659 optional SystemUse24HourClockProto use_24hour_clock = 30; | 660 optional SystemUse24HourClockProto use_24hour_clock = 30; |
660 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; | 661 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; |
661 optional SystemSettingsProto system_settings = 32; | 662 optional SystemSettingsProto system_settings = 32; |
662 optional SAMLSettingsProto saml_settings = 33; | 663 optional SAMLSettingsProto saml_settings = 33; |
663 optional RebootOnShutdownProto reboot_on_shutdown = 34; | 664 optional RebootOnShutdownProto reboot_on_shutdown = 34; |
664 optional DeviceHeartbeatSettingsProto device_heartbeat_settings = 35; | 665 optional DeviceHeartbeatSettingsProto device_heartbeat_settings = 35; |
665 optional ExtensionCacheSizeProto extension_cache_size = 36; | 666 optional ExtensionCacheSizeProto extension_cache_size = 36; |
666 optional LoginScreenDomainAutoCompleteProto | 667 optional LoginScreenDomainAutoCompleteProto |
667 login_screen_domain_auto_complete = 37; | 668 login_screen_domain_auto_complete = 37; |
668 } | 669 } |
OLD | NEW |