Chromium Code Reviews| 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 #include "chrome/browser/chromeos/cros_settings_names.h" | 5 #include "chrome/browser/chromeos/cros_settings_names.h" |
| 6 | 6 |
| 7 namespace chromeos { | 7 namespace chromeos { |
| 8 | 8 |
| 9 const char kCrosSettingsPrefix[] = "cros."; | 9 const char kCrosSettingsPrefix[] = "cros."; |
| 10 | 10 |
| 11 // All cros.accounts.* settings are stored in SignedSettings. | 11 // All cros.accounts.* settings are stored in SignedSettings. |
| 12 const char kAccountsPrefAllowGuest[] = "cros.accounts.allowBWSI"; | 12 const char kAccountsPrefAllowGuest[] = "cros.accounts.allowBWSI"; |
| 13 const char kAccountsPrefAllowNewUser[] = "cros.accounts.allowGuest"; | 13 const char kAccountsPrefAllowNewUser[] = "cros.accounts.allowGuest"; |
| 14 const char kAccountsPrefShowUserNamesOnSignIn[] | 14 const char kAccountsPrefShowUserNamesOnSignIn[] |
| 15 = "cros.accounts.showUserNamesOnSignIn"; | 15 = "cros.accounts.showUserNamesOnSignIn"; |
| 16 const char kAccountsPrefUsers[] = "cros.accounts.users"; | 16 const char kAccountsPrefUsers[] = "cros.accounts.users"; |
| 17 const char kAccountsPrefEphemeralUsersEnabled[] = | 17 const char kAccountsPrefEphemeralUsersEnabled[] = |
| 18 "cros.accounts.ephemeralUsersEnabled"; | 18 "cros.accounts.ephemeralUsersEnabled"; |
| 19 | 19 |
| 20 // Name of signed setting persisted on device, writeable only by owner. | 20 // Name of signed setting persisted on device, writeable only by owner. |
| 21 const char kSettingProxyEverywhere[] = "cros.proxy.everywhere"; | 21 const char kSettingProxyEverywhere[] = "cros.proxy.everywhere"; |
| 22 | 22 |
| 23 // All cros.signed.* settings are stored in SignedSettings. | 23 // All cros.signed.* settings are stored in SignedSettings. |
| 24 const char kSignedDataRoamingEnabled[] = "cros.signed.data_roaming_enabled"; | 24 const char kSignedDataRoamingEnabled[] = "cros.signed.data_roaming_enabled"; |
| 25 | 25 |
| 26 const char kSystemTimezonePolicy[] = "cros.system.timezone_policy"; | |
| 26 const char kSystemTimezone[] = "cros.system.timezone"; | 27 const char kSystemTimezone[] = "cros.system.timezone"; |
|
Joao da Silva
2012/07/27 13:40:57
Please comment why there are two similar settings
pneubeck (no reviews)
2012/07/31 22:21:05
Done.
| |
| 27 | 28 |
| 28 const char kDeviceOwner[] = "cros.device.owner"; | 29 const char kDeviceOwner[] = "cros.device.owner"; |
| 29 | 30 |
| 30 const char kStatsReportingPref[] = "cros.metrics.reportingEnabled"; | 31 const char kStatsReportingPref[] = "cros.metrics.reportingEnabled"; |
| 31 | 32 |
| 32 const char kReleaseChannel[] = "cros.system.releaseChannel"; | 33 const char kReleaseChannel[] = "cros.system.releaseChannel"; |
| 33 const char kReleaseChannelDelegated[] = "cros.system.releaseChannelDelegated"; | 34 const char kReleaseChannelDelegated[] = "cros.system.releaseChannelDelegated"; |
| 34 | 35 |
| 35 // A boolean pref that indicates whether OS & firmware version info should be | 36 // A boolean pref that indicates whether OS & firmware version info should be |
| 36 // reported along with device policy requests. | 37 // reported along with device policy requests. |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 70 | 71 |
| 71 // Defines the set of URLs to be opened on login to the anonymous account used | 72 // Defines the set of URLs to be opened on login to the anonymous account used |
| 72 // if the device is in KIOSK mode. | 73 // if the device is in KIOSK mode. |
| 73 const char kStartUpUrls[] = "cros.start_up_urls"; | 74 const char kStartUpUrls[] = "cros.start_up_urls"; |
| 74 | 75 |
| 75 // This policy should not appear in the protobuf ever but is used internally to | 76 // This policy should not appear in the protobuf ever but is used internally to |
| 76 // signal that we are running in a "safe-mode" for policy recovery. | 77 // signal that we are running in a "safe-mode" for policy recovery. |
| 77 const char kPolicyMissingMitigationMode[] = | 78 const char kPolicyMissingMitigationMode[] = |
| 78 "cros.internal.policy_mitigation_mode"; | 79 "cros.internal.policy_mitigation_mode"; |
| 79 } // namespace chromeos | 80 } // namespace chromeos |
| OLD | NEW |