Index: chrome/browser/chromeos/login/login_performer.cc |
diff --git a/chrome/browser/chromeos/login/login_performer.cc b/chrome/browser/chromeos/login/login_performer.cc |
index e66cae6b1a736602175e385714e3cf1d1d1bef71..cbab23e53d5b543164036fc1c57a6e9592f72014 100644 |
--- a/chrome/browser/chromeos/login/login_performer.cc |
+++ b/chrome/browser/chromeos/login/login_performer.cc |
@@ -299,13 +299,13 @@ void LoginPerformer::LoginAsPublicAccount(const std::string& username) { |
username)); |
} |
-void LoginPerformer::LoginAsKioskAccount( |
- const std::string& app_user_id, bool force_ephemeral) { |
+void LoginPerformer::LoginAsKioskAccount(const std::string& app_user_id, |
+ bool force_guest) { |
authenticator_ = LoginUtils::Get()->CreateAuthenticator(this); |
BrowserThread::PostTask( |
BrowserThread::UI, FROM_HERE, |
base::Bind(&Authenticator::LoginAsKioskAccount, authenticator_.get(), |
- app_user_id, force_ephemeral)); |
+ app_user_id, force_guest)); |
} |
void LoginPerformer::RecoverEncryptedData(const std::string& old_password) { |