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 3d5471136a6e66b933d44895f70a0493236afd99..99b1cc802def8cf68fee74123e9470d97fcc24e0 100644 |
--- a/chrome/browser/chromeos/login/login_performer.cc |
+++ b/chrome/browser/chromeos/login/login_performer.cc |
@@ -296,12 +296,13 @@ void LoginPerformer::LoginAsPublicAccount(const std::string& username) { |
username)); |
} |
-void LoginPerformer::LoginAsKioskAccount(const std::string& app_user_id) { |
+void LoginPerformer::LoginAsKioskAccount( |
+ const std::string& app_user_id, bool force_ephemeral) { |
bartfab (slow)
2014/02/13 19:51:53
This violates the style guide. Either the entire d
rkc
2014/02/13 23:22:01
Done.
|
authenticator_ = LoginUtils::Get()->CreateAuthenticator(this); |
BrowserThread::PostTask( |
BrowserThread::UI, FROM_HERE, |
base::Bind(&Authenticator::LoginAsKioskAccount, authenticator_.get(), |
- app_user_id)); |
+ app_user_id, force_ephemeral)); |
} |
void LoginPerformer::RecoverEncryptedData(const std::string& old_password) { |