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

Side by Side Diff: chrome/browser/chromeos/settings/cros_settings_names.cc

Issue 11358113: Add device policy definition for local accounts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix oversights. Created 8 years, 1 month 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 #include "chrome/browser/chromeos/settings/cros_settings_names.h" 5 #include "chrome/browser/chromeos/settings/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 const char kAccountsPrefDeviceLocalAccounts[] =
20 "cros.accounts.deviceLocalAccounts";
19 21
20 // Name of signed setting persisted on device, writeable only by owner. 22 // Name of signed setting persisted on device, writeable only by owner.
21 const char kSettingProxyEverywhere[] = "cros.proxy.everywhere"; 23 const char kSettingProxyEverywhere[] = "cros.proxy.everywhere";
22 24
23 // All cros.signed.* settings are stored in SignedSettings. 25 // All cros.signed.* settings are stored in SignedSettings.
24 const char kSignedDataRoamingEnabled[] = "cros.signed.data_roaming_enabled"; 26 const char kSignedDataRoamingEnabled[] = "cros.signed.data_roaming_enabled";
25 27
26 // The first constant refers to the user setting editable in the UI. The second 28 // The first constant refers to the user setting editable in the UI. The second
27 // refers to the timezone policy. This seperation is necessary to allow the user 29 // refers to the timezone policy. This seperation is necessary to allow the user
28 // to temporarily change the timezone for the current session and reset it to 30 // to temporarily change the timezone for the current session and reset it to
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 77
76 // Defines the set of URLs to be opened on login to the anonymous account used 78 // Defines the set of URLs to be opened on login to the anonymous account used
77 // if the device is in KIOSK mode. 79 // if the device is in KIOSK mode.
78 const char kStartUpUrls[] = "cros.start_up_urls"; 80 const char kStartUpUrls[] = "cros.start_up_urls";
79 81
80 // This policy should not appear in the protobuf ever but is used internally to 82 // This policy should not appear in the protobuf ever but is used internally to
81 // signal that we are running in a "safe-mode" for policy recovery. 83 // signal that we are running in a "safe-mode" for policy recovery.
82 const char kPolicyMissingMitigationMode[] = 84 const char kPolicyMissingMitigationMode[] =
83 "cros.internal.policy_mitigation_mode"; 85 "cros.internal.policy_mitigation_mode";
84 } // namespace chromeos 86 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/settings/cros_settings_names.h ('k') | chrome/browser/chromeos/settings/device_settings_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698