Chromium Code Reviews| Index: chrome/browser/chromeos/login/enterprise_enrollment_view.h |
| diff --git a/chrome/browser/chromeos/login/enterprise_enrollment_view.h b/chrome/browser/chromeos/login/enterprise_enrollment_view.h |
| index 23322f121c52872a9b7cd32db0f180fa9aa17bd4..58889b6c8eea4e370b286a3e4822410a35d74ddc 100644 |
| --- a/chrome/browser/chromeos/login/enterprise_enrollment_view.h |
| +++ b/chrome/browser/chromeos/login/enterprise_enrollment_view.h |
| @@ -34,6 +34,8 @@ class EnterpriseEnrollmentView : public views::View, |
| explicit EnterpriseEnrollmentView(EnterpriseEnrollmentController* controller); |
| virtual ~EnterpriseEnrollmentView(); |
| + void editable_user(bool editable); |
| + |
| // Initialize view controls and layout. |
| void Init(); |
| @@ -54,6 +56,7 @@ class EnterpriseEnrollmentView : public views::View, |
| const std::string& access_code) OVERRIDE; |
| virtual void OnAuthCancelled() OVERRIDE; |
| virtual void OnConfirmationClosed() OVERRIDE; |
| + virtual bool SetInitialUser(std::string* user) OVERRIDE; |
|
Mattias Nissler (ping if slow)
2011/04/15 18:17:58
I would rather name it set GetInitialUser.
pastarmovj
2011/04/15 18:44:49
Done.
|
| private: |
| // Updates the gaia login box. |
| @@ -70,6 +73,9 @@ class EnterpriseEnrollmentView : public views::View, |
| // Controls. |
| WebPageDomView* enrollment_page_view_; |
| + // Local variables. |
|
Mattias Nissler (ping if slow)
2011/04/15 18:17:58
unnecessary.
pastarmovj
2011/04/15 18:44:49
Done.
|
| + bool editable_user_; |
| + |
| DISALLOW_COPY_AND_ASSIGN(EnterpriseEnrollmentView); |
| }; |