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

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: fix license 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/app_mode/kiosk_profile_loader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..21012624ccbf2625413484e399a55cb375e9e87a 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 use_guest_mount,
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 use_guest_mount_;
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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698