| 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 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 // dimmed or soon after the screen has been turned off", | 554 // dimmed or soon after the screen has been turned off", |
| 555 // "type": "integer", | 555 // "type": "integer", |
| 556 // "minimum": 0 | 556 // "minimum": 0 |
| 557 // } | 557 // } |
| 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 // Configures strategy for automatic clean-up process that is run when device | 564 // Deprecated. There is only one disk-full cleanup strategy: LRU. |
| 565 // runs out of free disk space. One of "remove-lru", "remove-lru-if-dormant". | |
| 566 optional string clean_up_strategy = 1; | 565 optional string clean_up_strategy = 1; |
| 567 } | 566 } |
| 568 | 567 |
| 569 message ChromeDeviceSettingsProto { | 568 message ChromeDeviceSettingsProto { |
| 570 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 569 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
| 571 optional UserWhitelistProto user_whitelist = 2; | 570 optional UserWhitelistProto user_whitelist = 2; |
| 572 optional GuestModeEnabledProto guest_mode_enabled = 3; | 571 optional GuestModeEnabledProto guest_mode_enabled = 3; |
| 573 optional DeviceProxySettingsProto device_proxy_settings = 4; | 572 optional DeviceProxySettingsProto device_proxy_settings = 4; |
| 574 optional CameraEnabledProto camera_enabled = 5; | 573 optional CameraEnabledProto camera_enabled = 5; |
| 575 optional ShowUserNamesOnSigninProto show_user_names = 6; | 574 optional ShowUserNamesOnSigninProto show_user_names = 6; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 592 optional StartUpFlagsProto start_up_flags = 23; | 591 optional StartUpFlagsProto start_up_flags = 23; |
| 593 optional UptimeLimitProto uptime_limit = 24; | 592 optional UptimeLimitProto uptime_limit = 24; |
| 594 optional VariationsParameterProto variations_parameter = 25; | 593 optional VariationsParameterProto variations_parameter = 25; |
| 595 optional AttestationSettingsProto attestation_settings = 26; | 594 optional AttestationSettingsProto attestation_settings = 26; |
| 596 optional AccessibilitySettingsProto accessibility_settings = 27; | 595 optional AccessibilitySettingsProto accessibility_settings = 27; |
| 597 optional SupervisedUsersSettingsProto supervised_users_settings = 28; | 596 optional SupervisedUsersSettingsProto supervised_users_settings = 28; |
| 598 optional LoginScreenPowerManagementProto login_screen_power_management = 29; | 597 optional LoginScreenPowerManagementProto login_screen_power_management = 29; |
| 599 optional SystemUse24HourClockProto use_24hour_clock = 30; | 598 optional SystemUse24HourClockProto use_24hour_clock = 30; |
| 600 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; | 599 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; |
| 601 } | 600 } |
| OLD | NEW |