| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 } | 72 } |
| 73 | 73 |
| 74 message MetricsEnabledProto { | 74 message MetricsEnabledProto { |
| 75 optional bool metrics_enabled = 1; | 75 optional bool metrics_enabled = 1; |
| 76 } | 76 } |
| 77 | 77 |
| 78 message ReleaseChannelProto { | 78 message ReleaseChannelProto { |
| 79 // One of "stable-channel", "beta-channel", or "dev-channel" | 79 // One of "stable-channel", "beta-channel", or "dev-channel" |
| 80 optional string release_channel = 1; | 80 optional string release_channel = 1; |
| 81 | 81 |
| 82 // If |user_delegated| is set to true and the |release_channel| field is not | 82 // If |release_channel_delegated| is set to true and the |release_channel| |
| 83 // set or left empty, the user can select the channel. If the | 83 // field is not set or left empty, the user can select the channel. If the |
| 84 // |release_channel| is specified it will always override users choice! | 84 // |release_channel| is specified it will always override users choice! |
| 85 optional bool release_channel_delegated = 2; | 85 optional bool release_channel_delegated = 2; |
| 86 } | 86 } |
| 87 | 87 |
| 88 message DeviceOpenNetworkConfigurationProto { | 88 message DeviceOpenNetworkConfigurationProto { |
| 89 // The network configuration blob. This is a JSON string as specified by ONC. | 89 // The network configuration blob. This is a JSON string as specified by ONC. |
| 90 optional string open_network_configuration = 1; | 90 optional string open_network_configuration = 1; |
| 91 } | 91 } |
| 92 | 92 |
| 93 // Policies to turn on portions of the device status reports. | 93 // Policies to turn on portions of the device status reports. |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 optional ReleaseChannelProto release_channel = 10; | 179 optional ReleaseChannelProto release_channel = 10; |
| 180 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; | 180 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; |
| 181 optional DeviceReportingProto device_reporting = 12; | 181 optional DeviceReportingProto device_reporting = 12; |
| 182 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; | 182 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; |
| 183 optional AppPackProto app_pack = 14; | 183 optional AppPackProto app_pack = 14; |
| 184 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; | 184 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; |
| 185 optional ScreenSaverProto login_screen_saver = 16; | 185 optional ScreenSaverProto login_screen_saver = 16; |
| 186 optional AutoUpdateSettingsProto auto_update_settings = 17; | 186 optional AutoUpdateSettingsProto auto_update_settings = 17; |
| 187 optional StartUpUrlsProto start_up_urls = 18; | 187 optional StartUpUrlsProto start_up_urls = 18; |
| 188 } | 188 } |
| OLD | NEW |