Chromium Code Reviews| Index: chrome/browser/chromeos/app_mode/kiosk_profile_loader.h |
| diff --git a/chrome/browser/chromeos/app_mode/kiosk_profile_loader.h b/chrome/browser/chromeos/app_mode/kiosk_profile_loader.h |
| index 06b90291f004bf297414e27c0497a947c8613db5..edb6779533e8c620fd91bd2729393916773fbafe 100644 |
| --- a/chrome/browser/chromeos/app_mode/kiosk_profile_loader.h |
| +++ b/chrome/browser/chromeos/app_mode/kiosk_profile_loader.h |
| @@ -18,8 +18,6 @@ class Profile; |
| namespace chromeos { |
| -class KioskAppManager; |
| - |
| // KioskProfileLoader loads a special profile for a given app. It first |
| // attempts to login for the app's generated user id. If the login is |
| // successful, it prepares app profile then calls the delegate. |
| @@ -36,7 +34,7 @@ class KioskProfileLoader : public LoginPerformer::Delegate, |
| }; |
| KioskProfileLoader(const std::string& app_user_id, |
| - bool force_ephemeral, |
| + bool force_guest, |
|
bartfab (slow)
2014/03/20 13:22:29
Why is this being renamed from |ephemeral| to |gue
rkc
2014/03/20 21:45:01
Logging in a Kiosk account with an ephemeral mount
bartfab (slow)
2014/03/21 10:37:32
Ugh. I had looked at ParallelAuthenticator::LoginA
xiyuan
2014/03/21 16:38:16
From rkc@'s test, regular mount (i.e. Mount/MountP
rkc
2014/03/21 23:31:18
What you described is what we used to do; but afte
bartfab (slow)
2014/03/25 12:52:54
In that case, |force_guest| is still the wrong ter
rkc
2014/03/26 21:30:40
Done.
|
| Delegate* delegate); |
| virtual ~KioskProfileLoader(); |
| @@ -62,7 +60,7 @@ class KioskProfileLoader : public LoginPerformer::Delegate, |
| virtual void OnProfilePrepared(Profile* profile) OVERRIDE; |
| std::string user_id_; |
| - bool force_ephemeral_; |
| + bool force_guest_; |
| Delegate* delegate_; |
| scoped_ptr<CryptohomedChecker> cryptohomed_checker_; |
| scoped_ptr<LoginPerformer> login_performer_; |