Index: chrome/browser/chromeos/login/wizard_controller.h |
diff --git a/chrome/browser/chromeos/login/wizard_controller.h b/chrome/browser/chromeos/login/wizard_controller.h |
index 492fd2e9d8afb1e801412c386ef2a347e1cbc45c..30226a0f1c9ae631eb5348cb1531601eaaa9a658 100644 |
--- a/chrome/browser/chromeos/login/wizard_controller.h |
+++ b/chrome/browser/chromeos/login/wizard_controller.h |
@@ -309,6 +309,9 @@ class WizardController : public ScreenObserver { |
// Returns false if timezone has already been resolved. |
bool SetOnTimeZoneResolvedForTesting(const base::Closure& callback); |
+ // Callback for enrollment auth token. |
+ void OnEnrollmentAuthTokenReceived(const std::string& auth_token); |
+ |
// Whether to skip any screens that may normally be shown after login |
// (registration, Terms of Service, user image selection). |
static bool skip_post_login_screens_; |
@@ -342,6 +345,7 @@ class WizardController : public ScreenObserver { |
std::string username_; |
std::string password_; |
+ std::string auth_token_; |
bartfab (slow)
2014/07/16 10:09:15
Nit: There are no users of this memeber yet. Docum
achuithb
2014/08/13 01:57:43
That's not true? It's set by OnEnrollmentAuthToken
|
// True if running official BUILD. |
bool is_official_build_; |