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 01d94072f13d35d96084f316b44a548323c66b96..0b152655247a425d6e79a3a192fe998dc798f23f 100644 |
--- a/chrome/browser/chromeos/app_mode/kiosk_profile_loader.h |
+++ b/chrome/browser/chromeos/app_mode/kiosk_profile_loader.h |
@@ -13,6 +13,7 @@ |
#include "chrome/browser/chromeos/app_mode/kiosk_app_launch_error.h" |
#include "chrome/browser/chromeos/login/session/user_session_manager.h" |
#include "chromeos/login/auth/login_performer.h" |
+#include "components/signin/core/account_id/account_id.h" |
class Profile; |
@@ -33,7 +34,7 @@ class KioskProfileLoader : public LoginPerformer::Delegate, |
virtual ~Delegate() {} |
}; |
- KioskProfileLoader(const std::string& app_user_id, |
+ KioskProfileLoader(const AccountId& app_account_id, |
bool use_guest_mount, |
Delegate* delegate); |
@@ -58,7 +59,7 @@ class KioskProfileLoader : public LoginPerformer::Delegate, |
// UserSessionManagerDelegate implementation: |
void OnProfilePrepared(Profile* profile, bool browser_launched) override; |
- std::string user_id_; |
+ const AccountId account_id_; |
bool use_guest_mount_; |
Delegate* delegate_; |
scoped_ptr<CryptohomedChecker> cryptohomed_checker_; |