Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: chrome/browser/policy/proto/chrome_device_policy.proto

Issue 9704092: Adds a device policy to specify the set of initial urls for the demo user account. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed issues and rebases to ToT. Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 // of the following: 153 // of the following:
154 // --------------------------------------------------------------------- 154 // ---------------------------------------------------------------------
155 // "" (or not set at all): update to latest version available. 155 // "" (or not set at all): update to latest version available.
156 // 1412.: update to any minor version of 1412 (e.g. 1412.24.34 or 1412.60.2) 156 // 1412.: update to any minor version of 1412 (e.g. 1412.24.34 or 1412.60.2)
157 // 1412.2.: update to any minor version of 1412.2 (e.g. 1412.2.34 or 1412.2.2) 157 // 1412.2.: update to any minor version of 1412.2 (e.g. 1412.2.34 or 1412.2.2)
158 // 1412.24.34: update to this specific version only 158 // 1412.24.34: update to this specific version only
159 // --------------------------------------------------------------------- 159 // ---------------------------------------------------------------------
160 optional string target_version_prefix = 2; 160 optional string target_version_prefix = 2;
161 } 161 }
162 162
163 message StartUpUrlsProto {
164 // Specifies the URLs to be loaded on login to the anonymous account used if
165 // the device is in KIOSK mode.
166 repeated string start_up_urls = 1;
167 }
168
163 message ChromeDeviceSettingsProto { 169 message ChromeDeviceSettingsProto {
164 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; 170 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;
165 optional UserWhitelistProto user_whitelist = 2; 171 optional UserWhitelistProto user_whitelist = 2;
166 optional GuestModeEnabledProto guest_mode_enabled = 3; 172 optional GuestModeEnabledProto guest_mode_enabled = 3;
167 optional DeviceProxySettingsProto device_proxy_settings = 4; 173 optional DeviceProxySettingsProto device_proxy_settings = 4;
168 optional CameraEnabledProto camera_enabled = 5; 174 optional CameraEnabledProto camera_enabled = 5;
169 optional ShowUserNamesOnSigninProto show_user_names = 6; 175 optional ShowUserNamesOnSigninProto show_user_names = 6;
170 optional DataRoamingEnabledProto data_roaming_enabled = 7; 176 optional DataRoamingEnabledProto data_roaming_enabled = 7;
171 optional AllowNewUsersProto allow_new_users = 8; 177 optional AllowNewUsersProto allow_new_users = 8;
172 optional MetricsEnabledProto metrics_enabled = 9; 178 optional MetricsEnabledProto metrics_enabled = 9;
173 optional ReleaseChannelProto release_channel = 10; 179 optional ReleaseChannelProto release_channel = 10;
174 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; 180 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11;
175 optional DeviceReportingProto device_reporting = 12; 181 optional DeviceReportingProto device_reporting = 12;
176 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; 182 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13;
177 optional AppPackProto app_pack = 14; 183 optional AppPackProto app_pack = 14;
178 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; 184 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15;
179 optional ScreenSaverProto login_screen_saver = 16; 185 optional ScreenSaverProto login_screen_saver = 16;
180 optional AutoUpdateSettingsProto auto_update_settings = 17; 186 optional AutoUpdateSettingsProto auto_update_settings = 17;
187 optional StartUpUrlsProto start_up_urls = 18;
181 } 188 }
OLDNEW
« no previous file with comments | « chrome/browser/policy/device_policy_cache.cc ('k') | chrome/test/functional/policy_test_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698