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

Side by Side Diff: chrome/browser/chromeos/policy/device_local_account.h

Issue 676913002: kiosk: Support update url for enterprise. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_POLICY_DEVICE_LOCAL_ACCOUNT_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_LOCAL_ACCOUNT_H_
6 #define CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_LOCAL_ACCOUNT_H_ 6 #define CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_LOCAL_ACCOUNT_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 10 matching lines...) Expand all
21 // A login-less, policy-configured browsing session. 21 // A login-less, policy-configured browsing session.
22 TYPE_PUBLIC_SESSION, 22 TYPE_PUBLIC_SESSION,
23 // An account that serves as a container for a single full-screen app. 23 // An account that serves as a container for a single full-screen app.
24 TYPE_KIOSK_APP, 24 TYPE_KIOSK_APP,
25 // Sentinel, must be last. 25 // Sentinel, must be last.
26 TYPE_COUNT 26 TYPE_COUNT
27 }; 27 };
28 28
29 DeviceLocalAccount(Type type, 29 DeviceLocalAccount(Type type,
30 const std::string& account_id, 30 const std::string& account_id,
31 const std::string& kiosk_app_id); 31 const std::string& kiosk_app_id,
32 const std::string& kiosk_app_update_url);
32 ~DeviceLocalAccount(); 33 ~DeviceLocalAccount();
33 34
34 Type type; 35 Type type;
35 // A device-local account has two identifiers: 36 // A device-local account has two identifiers:
36 // * The |account_id| is chosen by the entity that defines the device-local 37 // * The |account_id| is chosen by the entity that defines the device-local
37 // account. The only constraints are that the |account_id| be unique and, 38 // account. The only constraints are that the |account_id| be unique and,
38 // for legacy reasons, it contain an @ symbol. 39 // for legacy reasons, it contain an @ symbol.
39 // * The |user_id| is a synthesized identifier that is guaranteed to be 40 // * The |user_id| is a synthesized identifier that is guaranteed to be
40 // unique, contain an @ symbol, not collide with the |user_id| of any other 41 // unique, contain an @ symbol, not collide with the |user_id| of any other
41 // user on the device (such as regular users or supervised users) and be 42 // user on the device (such as regular users or supervised users) and be
42 // identifiable as belonging to a device-local account by. 43 // identifiable as belonging to a device-local account by.
43 // The |account_id| is primarily used by policy code: If device policy defines 44 // The |account_id| is primarily used by policy code: If device policy defines
44 // a device-local account with a certain |account_id|, the user policy for 45 // a device-local account with a certain |account_id|, the user policy for
45 // that account has to be fetched by referencing the same |account_id|. 46 // that account has to be fetched by referencing the same |account_id|.
46 // The |user_id| is passed to the user_manager::UserManager where it becomes 47 // The |user_id| is passed to the user_manager::UserManager where it becomes
47 // part 48 // part
48 // of the global user list on the device. The |account_id| would not be safe 49 // of the global user list on the device. The |account_id| would not be safe
49 // to use here as it is a free-form identifier that could conflict with 50 // to use here as it is a free-form identifier that could conflict with
50 // another |user_id| on the device and cannot be easily identified as 51 // another |user_id| on the device and cannot be easily identified as
51 // belonging to a device-local account. 52 // belonging to a device-local account.
52 std::string account_id; 53 std::string account_id;
53 std::string user_id; 54 std::string user_id;
54 std::string kiosk_app_id; 55 std::string kiosk_app_id;
56 std::string kiosk_app_update_url;
55 }; 57 };
56 58
57 std::string GenerateDeviceLocalAccountUserId(const std::string& account_id, 59 std::string GenerateDeviceLocalAccountUserId(const std::string& account_id,
58 DeviceLocalAccount::Type type); 60 DeviceLocalAccount::Type type);
59 61
60 // Determines whether |user_id| belongs to a device-local account and if so, 62 // Determines whether |user_id| belongs to a device-local account and if so,
61 // returns the type of device-local account in |type| unless |type| is NULL. 63 // returns the type of device-local account in |type| unless |type| is NULL.
62 bool IsDeviceLocalAccountUser(const std::string& user_id, 64 bool IsDeviceLocalAccountUser(const std::string& user_id,
63 DeviceLocalAccount::Type* type); 65 DeviceLocalAccount::Type* type);
64 66
65 // Stores a list of device-local accounts in |cros_settings|. The accounts are 67 // Stores a list of device-local accounts in |cros_settings|. The accounts are
66 // stored as a list of dictionaries with each dictionary containing the 68 // stored as a list of dictionaries with each dictionary containing the
67 // information about one |DeviceLocalAccount|. 69 // information about one |DeviceLocalAccount|.
68 void SetDeviceLocalAccounts( 70 void SetDeviceLocalAccounts(
69 chromeos::CrosSettings* cros_settings, 71 chromeos::CrosSettings* cros_settings,
70 const std::vector<DeviceLocalAccount>& accounts); 72 const std::vector<DeviceLocalAccount>& accounts);
71 73
72 // Retrieves a list of device-local accounts from |cros_settings|. 74 // Retrieves a list of device-local accounts from |cros_settings|.
73 std::vector<DeviceLocalAccount> GetDeviceLocalAccounts( 75 std::vector<DeviceLocalAccount> GetDeviceLocalAccounts(
74 chromeos::CrosSettings* cros_settings); 76 chromeos::CrosSettings* cros_settings);
75 77
76 } // namespace policy 78 } // namespace policy
77 79
78 #endif // CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_LOCAL_ACCOUNT_H_ 80 #endif // CHROME_BROWSER_CHROMEOS_POLICY_DEVICE_LOCAL_ACCOUNT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698