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

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

Issue 10827050: Added a timezone policy and pyauto tests for it. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 5 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
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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 // Bluetooth and Cellular at the moment. 199 // Bluetooth and Cellular at the moment.
200 repeated ConnectionType allowed_connection_types = 5; 200 repeated ConnectionType allowed_connection_types = 5;
201 } 201 }
202 202
203 message StartUpUrlsProto { 203 message StartUpUrlsProto {
204 // Specifies the URLs to be loaded on login to the anonymous account used if 204 // Specifies the URLs to be loaded on login to the anonymous account used if
205 // the device is in RETAIL mode. 205 // the device is in RETAIL mode.
206 repeated string start_up_urls = 1; 206 repeated string start_up_urls = 1;
207 } 207 }
208 208
209 message SystemTimezoneProto {
210 optional string timezone = 1;
Joao da Silva 2012/07/27 13:40:57 Please document the field, even if it's obvious :-
pneubeck (no reviews) 2012/07/31 22:21:05 Did so. However, I not happy with providing a desc
pneubeck (no reviews) 2012/07/31 22:21:05 Done.
211 }
212
209 message ChromeDeviceSettingsProto { 213 message ChromeDeviceSettingsProto {
210 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; 214 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;
211 optional UserWhitelistProto user_whitelist = 2; 215 optional UserWhitelistProto user_whitelist = 2;
212 optional GuestModeEnabledProto guest_mode_enabled = 3; 216 optional GuestModeEnabledProto guest_mode_enabled = 3;
213 optional DeviceProxySettingsProto device_proxy_settings = 4; 217 optional DeviceProxySettingsProto device_proxy_settings = 4;
214 optional CameraEnabledProto camera_enabled = 5; 218 optional CameraEnabledProto camera_enabled = 5;
215 optional ShowUserNamesOnSigninProto show_user_names = 6; 219 optional ShowUserNamesOnSigninProto show_user_names = 6;
216 optional DataRoamingEnabledProto data_roaming_enabled = 7; 220 optional DataRoamingEnabledProto data_roaming_enabled = 7;
217 optional AllowNewUsersProto allow_new_users = 8; 221 optional AllowNewUsersProto allow_new_users = 8;
218 optional MetricsEnabledProto metrics_enabled = 9; 222 optional MetricsEnabledProto metrics_enabled = 9;
219 optional ReleaseChannelProto release_channel = 10; 223 optional ReleaseChannelProto release_channel = 10;
220 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; 224 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11;
221 optional DeviceReportingProto device_reporting = 12; 225 optional DeviceReportingProto device_reporting = 12;
222 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; 226 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13;
223 optional AppPackProto app_pack = 14; 227 optional AppPackProto app_pack = 14;
224 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; 228 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15;
225 optional ScreenSaverProto login_screen_saver = 16; 229 optional ScreenSaverProto login_screen_saver = 16;
226 optional AutoUpdateSettingsProto auto_update_settings = 17; 230 optional AutoUpdateSettingsProto auto_update_settings = 17;
227 optional StartUpUrlsProto start_up_urls = 18; 231 optional StartUpUrlsProto start_up_urls = 18;
228 optional PinnedAppsProto pinned_apps = 19; 232 optional PinnedAppsProto pinned_apps = 19;
233 optional SystemTimezoneProto system_timezone = 20;
229 } 234 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698