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

Unified Diff: chrome/browser/chromeos/app_mode/kiosk_profile_loader.h

Issue 205713002: Add a basic demo mode browser test. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
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_;
« no previous file with comments | « no previous file | chrome/browser/chromeos/app_mode/kiosk_profile_loader.cc » ('j') | chrome/browser/chromeos/idle_detector.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698