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

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

Issue 12300016: Ignoring the timezone policy if it is set to an empty string. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Initial patch. Created 7 years, 10 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
« no previous file with comments | « chrome/browser/policy/browser_policy_connector.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 an owner-determined timezone that applies to the login screen and 210 // Specifies an owner-determined timezone that applies to the login screen and
211 // all users. Valid values are listed in "timezone_settings.cc". Additionally, 211 // all users. Valid values are listed in "timezone_settings.cc". Additionally,
212 // timezones from the "IANA Time Zone Database" (e.g. listed on wikipedia) 212 // timezones from the "IANA Time Zone Database" (e.g. listed on wikipedia)
213 // that are equivalent to one of the timezones in "timezone_settings.cc" are 213 // that are equivalent to one of the timezones in "timezone_settings.cc" are
214 // valid. In case of an invalid value (e.g. the empty string), the setting is 214 // valid. In case of an invalid value, the setting is still activated with a
215 // still activated with a fallback timezone (currently "GMT"). 215 // fallback timezone (currently "GMT"). In case of an empty string or if no
216 // Only if no value is provided, the timezone device setting is inactive. In 216 // value is provided, the timezone device setting is inactive. In that case,
217 // that case, the currently active timezone will remain in use however users 217 // the currently active timezone will remain in use however users can change
218 // can change the timezone and the change is persistent. Thus a change by one 218 // the timezone and the change is persistent. Thus a change by one user
219 // user affects the login-screen and all other users. 219 // affects the login-screen and all other users.
220 optional string timezone = 1; 220 optional string timezone = 1;
221 } 221 }
222 222
223 // Describes a single device-local account. 223 // Describes a single device-local account.
224 message DeviceLocalAccountInfoProto { 224 message DeviceLocalAccountInfoProto {
225 // Identifier for the device-local account. Account identifiers loosely follow 225 // Identifier for the device-local account. Account identifiers loosely follow
226 // the conventions for email addresses as specified by RFC 5322, e.g. local 226 // the conventions for email addresses as specified by RFC 5322, e.g. local
227 // (user name) and domain parts, separated by the '@' character. 227 // (user name) and domain parts, separated by the '@' character.
228 // Policy-configured device-local accounts are on the same domain that the 228 // Policy-configured device-local accounts are on the same domain that the
229 // device is enrolled to. In contrast to RFC 5322 (which is more restrictive), 229 // device is enrolled to. In contrast to RFC 5322 (which is more restrictive),
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 optional AppPackProto app_pack = 14; 262 optional AppPackProto app_pack = 14;
263 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; 263 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15;
264 optional ScreenSaverProto login_screen_saver = 16; 264 optional ScreenSaverProto login_screen_saver = 16;
265 optional AutoUpdateSettingsProto auto_update_settings = 17; 265 optional AutoUpdateSettingsProto auto_update_settings = 17;
266 optional StartUpUrlsProto start_up_urls = 18; 266 optional StartUpUrlsProto start_up_urls = 18;
267 optional PinnedAppsProto pinned_apps = 19; 267 optional PinnedAppsProto pinned_apps = 19;
268 optional SystemTimezoneProto system_timezone = 20; 268 optional SystemTimezoneProto system_timezone = 20;
269 optional DeviceLocalAccountsProto device_local_accounts = 21; 269 optional DeviceLocalAccountsProto device_local_accounts = 21;
270 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; 270 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22;
271 } 271 }
OLDNEW
« no previous file with comments | « chrome/browser/policy/browser_policy_connector.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698