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

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

Issue 10829449: Clarified description of the timezone policy. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 4 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 { 209 message SystemTimezoneProto {
210 // Specifies the timezone which is applied if this value is provided. Valid 210 // The timezone policy is active if this value is provided. Valid values are
211 // values are listed in "timezone_settings.cc". Additionally, timezones from 211 // listed in "timezone_settings.cc". Additionally, timezones from
Mattias Nissler (ping if slow) 2012/08/21 08:48:20 Re-flow to use all 80 columns.
pneubeck (no reviews) 2012/08/21 09:02:10 Done.
212 // the "IANA Time Zone Database" (e.g. listed on wikipedia) that are 212 // the "IANA Time Zone Database" (e.g. listed on wikipedia) that are
213 // equivalent to one of the timezones in "timezone_settings.cc" are valid. 213 // equivalent to one of the timezones in "timezone_settings.cc" are valid.
214 // In case of an invalid value, the policy is still activated with a fallback
215 // timezone (currently "GMT").
216 // Only if no value is provided, the timezone policy is inactive.
Mattias Nissler (ping if slow) 2012/08/21 08:48:20 Please describe what "inactive" means.
pneubeck (no reviews) 2012/08/21 09:02:10 Done.
214 optional string timezone = 1; 217 optional string timezone = 1;
215 } 218 }
216 219
217 message ChromeDeviceSettingsProto { 220 message ChromeDeviceSettingsProto {
218 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; 221 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1;
219 optional UserWhitelistProto user_whitelist = 2; 222 optional UserWhitelistProto user_whitelist = 2;
220 optional GuestModeEnabledProto guest_mode_enabled = 3; 223 optional GuestModeEnabledProto guest_mode_enabled = 3;
221 optional DeviceProxySettingsProto device_proxy_settings = 4; 224 optional DeviceProxySettingsProto device_proxy_settings = 4;
222 optional CameraEnabledProto camera_enabled = 5; 225 optional CameraEnabledProto camera_enabled = 5;
223 optional ShowUserNamesOnSigninProto show_user_names = 6; 226 optional ShowUserNamesOnSigninProto show_user_names = 6;
224 optional DataRoamingEnabledProto data_roaming_enabled = 7; 227 optional DataRoamingEnabledProto data_roaming_enabled = 7;
225 optional AllowNewUsersProto allow_new_users = 8; 228 optional AllowNewUsersProto allow_new_users = 8;
226 optional MetricsEnabledProto metrics_enabled = 9; 229 optional MetricsEnabledProto metrics_enabled = 9;
227 optional ReleaseChannelProto release_channel = 10; 230 optional ReleaseChannelProto release_channel = 10;
228 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; 231 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11;
229 optional DeviceReportingProto device_reporting = 12; 232 optional DeviceReportingProto device_reporting = 12;
230 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; 233 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13;
231 optional AppPackProto app_pack = 14; 234 optional AppPackProto app_pack = 14;
232 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; 235 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15;
233 optional ScreenSaverProto login_screen_saver = 16; 236 optional ScreenSaverProto login_screen_saver = 16;
234 optional AutoUpdateSettingsProto auto_update_settings = 17; 237 optional AutoUpdateSettingsProto auto_update_settings = 17;
235 optional StartUpUrlsProto start_up_urls = 18; 238 optional StartUpUrlsProto start_up_urls = 18;
236 optional PinnedAppsProto pinned_apps = 19; 239 optional PinnedAppsProto pinned_apps = 19;
237 optional SystemTimezoneProto system_timezone = 20; 240 optional SystemTimezoneProto system_timezone = 20;
238 } 241 }
OLDNEW
« chrome/app/policy/policy_templates.json ('K') | « chrome/app/policy/policy_templates.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698