| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_ENTERPRISE_ENROLLMENT_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_ENTERPRISE_ENROLLMENT_VIEW_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_ENTERPRISE_ENROLLMENT_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_ENTERPRISE_ENROLLMENT_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 void ShowError(int message_id); | 63 void ShowError(int message_id); |
| 64 | 64 |
| 65 // Overriden from views::View: | 65 // Overriden from views::View: |
| 66 virtual void Layout() OVERRIDE; | 66 virtual void Layout() OVERRIDE; |
| 67 | 67 |
| 68 EnterpriseEnrollmentController* controller_; | 68 EnterpriseEnrollmentController* controller_; |
| 69 | 69 |
| 70 // Controls. | 70 // Controls. |
| 71 WebPageDomView* enrollment_page_view_; | 71 WebPageDomView* enrollment_page_view_; |
| 72 | 72 |
| 73 // Local variables. |
| 74 std::string user_; |
| 75 |
| 73 DISALLOW_COPY_AND_ASSIGN(EnterpriseEnrollmentView); | 76 DISALLOW_COPY_AND_ASSIGN(EnterpriseEnrollmentView); |
| 74 }; | 77 }; |
| 75 | 78 |
| 76 } // namespace chromeos | 79 } // namespace chromeos |
| 77 | 80 |
| 78 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_ENTERPRISE_ENROLLMENT_VIEW_H_ | 81 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_ENTERPRISE_ENROLLMENT_VIEW_H_ |
| OLD | NEW |