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

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

Issue 9365078: Rename the ephemeral_users field in the device policy protobuf (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed reference to Chrome OS bug. Created 8 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
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/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 kAccountsPrefEphemeralUsers[] = "cros.accounts.ephemeralUsers"; 17 const char kAccountsPrefEphemeralUsersEnabled[] =
18 "cros.accounts.ephemeralUsersEnabled";
18 19
19 // Name of signed setting persisted on device, writeable only by owner. 20 // Name of signed setting persisted on device, writeable only by owner.
20 const char kSettingProxyEverywhere[] = "cros.proxy.everywhere"; 21 const char kSettingProxyEverywhere[] = "cros.proxy.everywhere";
21 22
22 // All cros.signed.* settings are stored in SignedSettings. 23 // All cros.signed.* settings are stored in SignedSettings.
23 const char kSignedDataRoamingEnabled[] = "cros.signed.data_roaming_enabled"; 24 const char kSignedDataRoamingEnabled[] = "cros.signed.data_roaming_enabled";
24 25
25 const char kSystemTimezone[] = "cros.system.timezone"; 26 const char kSystemTimezone[] = "cros.system.timezone";
26 27
27 const char kDeviceOwner[] = "cros.device.owner"; 28 const char kDeviceOwner[] = "cros.device.owner";
(...skipping 10 matching lines...) Expand all
38 // A boolean pref that indicates whether device activity times should be 39 // A boolean pref that indicates whether device activity times should be
39 // recorded and reported along with device policy requests. 40 // recorded and reported along with device policy requests.
40 const char kReportDeviceActivityTimes[] = 41 const char kReportDeviceActivityTimes[] =
41 "cros.device_status.report_activity_times"; 42 "cros.device_status.report_activity_times";
42 43
43 // A boolean pref that indicates whether device the state of the dev switch 44 // A boolean pref that indicates whether device the state of the dev switch
44 // at boot mode should be reported along with device policy requests. 45 // at boot mode should be reported along with device policy requests.
45 const char kReportDeviceBootMode[] = "cros.device_status.report_boot_mode"; 46 const char kReportDeviceBootMode[] = "cros.device_status.report_boot_mode";
46 47
47 } // namespace chromeos 48 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/cros_settings_names.h ('k') | chrome/browser/chromeos/cros_settings_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698