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 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
558 // } | 558 // } |
559 // } | 559 // } |
560 optional string login_screen_power_management = 1; | 560 optional string login_screen_power_management = 1; |
561 } | 561 } |
562 | 562 |
563 message AutoCleanupSettigsProto { | 563 message AutoCleanupSettigsProto { |
564 // Deprecated. There is only one disk-full cleanup strategy: LRU. | 564 // Deprecated. There is only one disk-full cleanup strategy: LRU. |
565 optional string clean_up_strategy = 1; | 565 optional string clean_up_strategy = 1; |
566 } | 566 } |
567 | 567 |
568 // Settings that control low-level functions of the system. | |
569 message SystemSettingsProto { | |
570 // Whether developer mode is allowed on the device. If the device owner sets | |
571 // this flag to false, the system will refuse to boot and show and error | |
Joao da Silva
2014/05/22 15:04:07
and show "an" error
Joao da Silva
2014/05/22 15:04:07
I think you meant "if the flag is set to true" :-)
Mattias Nissler (ping if slow)
2014/05/23 06:51:26
Done.
Mattias Nissler (ping if slow)
2014/05/23 06:51:26
Done.
| |
572 // screen when the developer switch is turned on. | |
573 optional bool block_devmode = 1; | |
574 } | |
575 | |
568 message ChromeDeviceSettingsProto { | 576 message ChromeDeviceSettingsProto { |
569 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 577 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
570 optional UserWhitelistProto user_whitelist = 2; | 578 optional UserWhitelistProto user_whitelist = 2; |
571 optional GuestModeEnabledProto guest_mode_enabled = 3; | 579 optional GuestModeEnabledProto guest_mode_enabled = 3; |
572 optional DeviceProxySettingsProto device_proxy_settings = 4; | 580 optional DeviceProxySettingsProto device_proxy_settings = 4; |
573 optional CameraEnabledProto camera_enabled = 5; | 581 optional CameraEnabledProto camera_enabled = 5; |
574 optional ShowUserNamesOnSigninProto show_user_names = 6; | 582 optional ShowUserNamesOnSigninProto show_user_names = 6; |
575 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 583 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
576 optional AllowNewUsersProto allow_new_users = 8; | 584 optional AllowNewUsersProto allow_new_users = 8; |
577 optional MetricsEnabledProto metrics_enabled = 9; | 585 optional MetricsEnabledProto metrics_enabled = 9; |
(...skipping 12 matching lines...) Expand all Loading... | |
590 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; | 598 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; |
591 optional StartUpFlagsProto start_up_flags = 23; | 599 optional StartUpFlagsProto start_up_flags = 23; |
592 optional UptimeLimitProto uptime_limit = 24; | 600 optional UptimeLimitProto uptime_limit = 24; |
593 optional VariationsParameterProto variations_parameter = 25; | 601 optional VariationsParameterProto variations_parameter = 25; |
594 optional AttestationSettingsProto attestation_settings = 26; | 602 optional AttestationSettingsProto attestation_settings = 26; |
595 optional AccessibilitySettingsProto accessibility_settings = 27; | 603 optional AccessibilitySettingsProto accessibility_settings = 27; |
596 optional SupervisedUsersSettingsProto supervised_users_settings = 28; | 604 optional SupervisedUsersSettingsProto supervised_users_settings = 28; |
597 optional LoginScreenPowerManagementProto login_screen_power_management = 29; | 605 optional LoginScreenPowerManagementProto login_screen_power_management = 29; |
598 optional SystemUse24HourClockProto use_24hour_clock = 30; | 606 optional SystemUse24HourClockProto use_24hour_clock = 30; |
599 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; | 607 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; |
608 optional SystemSettingsProto system_settings = 32; | |
600 } | 609 } |
OLD | NEW |