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

Unified Diff: chromeos/login/auth/login_performer.cc

Issue 2498613003: Add ARC++ kiosk menu items and ability to start kiosk session. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 1 month 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 | « chromeos/login/auth/login_performer.h ('k') | chromeos/login/auth/stub_authenticator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/login/auth/login_performer.cc
diff --git a/chromeos/login/auth/login_performer.cc b/chromeos/login/auth/login_performer.cc
index d99a6f2ed3cb828049e02e4e6add58dcf0bc1bff..11c96b9b1a90aa594247e645210126338cacd0af 100644
--- a/chromeos/login/auth/login_performer.cc
+++ b/chromeos/login/auth/login_performer.cc
@@ -239,6 +239,14 @@ void LoginPerformer::LoginAsKioskAccount(const AccountId& app_account_id,
app_account_id, use_guest_mount));
}
+void LoginPerformer::LoginAsArcKioskAccount(
+ const AccountId& arc_app_account_id) {
+ EnsureAuthenticator();
+ task_runner_->PostTask(FROM_HERE,
+ base::Bind(&Authenticator::LoginAsArcKioskAccount,
+ authenticator_.get(), arc_app_account_id));
+}
+
void LoginPerformer::RecoverEncryptedData(const std::string& old_password) {
task_runner_->PostTask(FROM_HERE,
base::Bind(&Authenticator::RecoverEncryptedData,
« no previous file with comments | « chromeos/login/auth/login_performer.h ('k') | chromeos/login/auth/stub_authenticator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698