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

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

Issue 14927015: Translate device-local account IDs to user IDs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix forward declaration. Created 7 years, 7 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
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 #ifndef CHROME_BROWSER_CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_
6 #define CHROME_BROWSER_CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_ 6 #define CHROME_BROWSER_CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_
7 7
8 namespace chromeos { 8 namespace chromeos {
9 9
10 extern const char kCrosSettingsPrefix[]; 10 extern const char kCrosSettingsPrefix[];
11 11
12 extern const char kAccountsPrefAllowGuest[]; 12 extern const char kAccountsPrefAllowGuest[];
13 extern const char kAccountsPrefAllowNewUser[]; 13 extern const char kAccountsPrefAllowNewUser[];
14 extern const char kAccountsPrefShowUserNamesOnSignIn[]; 14 extern const char kAccountsPrefShowUserNamesOnSignIn[];
15 extern const char kAccountsPrefUsers[]; 15 extern const char kAccountsPrefUsers[];
16 extern const char kAccountsPrefEphemeralUsersEnabled[]; 16 extern const char kAccountsPrefEphemeralUsersEnabled[];
17 extern const char kAccountsPrefDeviceLocalAccounts[]; 17 extern const char kAccountsPrefDeviceLocalAccounts[];
18 extern const char kAccountsPrefDeviceLocalAccountsKeyId[]; 18 extern const char kAccountsPrefDeviceLocalAccountsKeyId[];
19 extern const char kAccountsPrefDeviceLocalAccountsKeyType[]; 19 extern const char kAccountsPrefDeviceLocalAccountsKeyType[];
20 extern const char kAccountsPrefDeviceLocalAccountsKeyKioskAppId[]; 20 extern const char kAccountsPrefDeviceLocalAccountsKeyKioskAppId[];
21 extern const char kAccountsPrefDeviceLocalAccountsKeyKioskAppUpdateURL[]; 21 extern const char kAccountsPrefDeviceLocalAccountsKeyKioskAppUpdateURL[];
22 extern const char kAccountsPrefDeviceLocalAccountAutoLoginId[]; 22 extern const char kAccountsPrefDeviceLocalAccountAutoLoginId[];
23 extern const char kAccountsPrefDeviceLocalAccountAutoLoginDelay[]; 23 extern const char kAccountsPrefDeviceLocalAccountAutoLoginDelay[];
24 extern const char kAccountsPrefDeviceLocalAccountAutoLoginBailoutEnabled[]; 24 extern const char kAccountsPrefDeviceLocalAccountAutoLoginBailoutEnabled[];
25 25
26 // This must match DeviceLocalAccountInfoProto.AccountType in
27 // chrome_device_policy.proto.
28 enum DeviceLocalAccountType {
29 // A login-less, policy-configured browsing session.
30 DEVICE_LOCAL_ACCOUNT_TYPE_PUBLIC_SESSION,
31 // An account that serves as a container for a single full-screen app.
32 DEVICE_LOCAL_ACCOUNT_TYPE_KIOSK_APP,
33 };
34
35 extern const char kSignedDataRoamingEnabled[]; 26 extern const char kSignedDataRoamingEnabled[];
36 27
37 extern const char kSystemTimezonePolicy[]; 28 extern const char kSystemTimezonePolicy[];
38 extern const char kSystemTimezone[]; 29 extern const char kSystemTimezone[];
39 30
40 extern const char kDeviceOwner[]; 31 extern const char kDeviceOwner[];
41 32
42 extern const char kStatsReportingPref[]; 33 extern const char kStatsReportingPref[];
43 34
44 extern const char kReleaseChannel[]; 35 extern const char kReleaseChannel[];
(...skipping 27 matching lines...) Expand all
72 extern const char kKioskApps[]; 63 extern const char kKioskApps[];
73 extern const char kKioskAutoLaunch[]; 64 extern const char kKioskAutoLaunch[];
74 extern const char kKioskDisableBailoutShortcut[]; 65 extern const char kKioskDisableBailoutShortcut[];
75 66
76 extern const char kVariationsRestrictParameter[]; 67 extern const char kVariationsRestrictParameter[];
77 68
78 extern const char kDeviceAttestationEnabled[]; 69 extern const char kDeviceAttestationEnabled[];
79 } // namespace chromeos 70 } // namespace chromeos
80 71
81 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_ 72 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_CROS_SETTINGS_NAMES_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/settings/cros_settings.cc ('k') | chrome/browser/chromeos/settings/cros_settings_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698