| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_NEW_USER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_NEW_USER_VIEW_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_NEW_USER_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_NEW_USER_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 bool need_guest_link_; | 193 bool need_guest_link_; |
| 194 | 194 |
| 195 // Whether create account link is needed. Set to false for now but we may | 195 // Whether create account link is needed. Set to false for now but we may |
| 196 // need it back in near future. | 196 // need it back in near future. |
| 197 bool need_create_account_; | 197 bool need_create_account_; |
| 198 | 198 |
| 199 // Ordinal position of controls inside view layout. | 199 // Ordinal position of controls inside view layout. |
| 200 int languages_menubutton_order_; | 200 int languages_menubutton_order_; |
| 201 int sign_in_button_order_; | 201 int sign_in_button_order_; |
| 202 | 202 |
| 203 FRIEND_TEST_ALL_PREFIXES(LoginScreenTest, IncognitoLogin); | |
| 204 friend class LoginScreenTest; | |
| 205 | |
| 206 DISALLOW_COPY_AND_ASSIGN(NewUserView); | 203 DISALLOW_COPY_AND_ASSIGN(NewUserView); |
| 207 }; | 204 }; |
| 208 | 205 |
| 209 } // namespace chromeos | 206 } // namespace chromeos |
| 210 | 207 |
| 211 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_NEW_USER_VIEW_H_ | 208 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_NEW_USER_VIEW_H_ |
| OLD | NEW |