| Index: chrome/browser/chromeos/login/enrollment/enrollment_screen.h
|
| diff --git a/chrome/browser/chromeos/login/enrollment/enrollment_screen.h b/chrome/browser/chromeos/login/enrollment/enrollment_screen.h
|
| index f88384f9249ef057d20764ae574614cc77752b58..e736bfb68063322a18b90acaab1bd10fed9c1cd5 100644
|
| --- a/chrome/browser/chromeos/login/enrollment/enrollment_screen.h
|
| +++ b/chrome/browser/chromeos/login/enrollment/enrollment_screen.h
|
| @@ -31,7 +31,8 @@ class EnrollmentScreen
|
|
|
| void SetParameters(EnrollmentScreenActor::EnrollmentMode enrollment_mode,
|
| const std::string& management_domain,
|
| - const std::string& enrollment_user);
|
| + const std::string& enrollment_user,
|
| + const std::string& auth_token);
|
|
|
| // WizardScreen implementation:
|
| virtual void PrepareToShow() OVERRIDE;
|
| @@ -61,6 +62,9 @@ class EnrollmentScreen
|
| // Kicks off the policy infrastructure to register with the service.
|
| void RegisterForDevicePolicy(const std::string& token);
|
|
|
| + // Sends an enrollment access token to a remote device.
|
| + void SendEnrollmentAuthToken(const std::string& token);
|
| +
|
| // Handles enrollment completion. Logs a UMA sample and requests the actor to
|
| // show the specified enrollment status.
|
| void ReportEnrollmentStatus(policy::EnrollmentStatus status);
|
| @@ -86,6 +90,7 @@ class EnrollmentScreen
|
| EnrollmentScreenActor::EnrollmentMode enrollment_mode_;
|
| bool enrollment_failed_once_;
|
| std::string user_;
|
| + std::string auth_token_;
|
| int lockbox_init_duration_;
|
| base::WeakPtrFactory<EnrollmentScreen> weak_ptr_factory_;
|
|
|
|
|