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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 bool need_guest_link_; | 192 bool need_guest_link_; |
193 | 193 |
194 // Whether create account link is needed. Set to false for now but we may | 194 // Whether create account link is needed. Set to false for now but we may |
195 // need it back in near future. | 195 // need it back in near future. |
196 bool need_create_account_; | 196 bool need_create_account_; |
197 | 197 |
198 // Ordinal position of controls inside view layout. | 198 // Ordinal position of controls inside view layout. |
199 int languages_menubutton_order_; | 199 int languages_menubutton_order_; |
200 int sign_in_button_order_; | 200 int sign_in_button_order_; |
201 | 201 |
202 FRIEND_TEST_ALL_PREFIXES(LoginScreenTest, IncognitoLogin); | |
203 friend class LoginScreenTest; | |
204 | |
205 DISALLOW_COPY_AND_ASSIGN(NewUserView); | 202 DISALLOW_COPY_AND_ASSIGN(NewUserView); |
206 }; | 203 }; |
207 | 204 |
208 } // namespace chromeos | 205 } // namespace chromeos |
209 | 206 |
210 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_NEW_USER_VIEW_H_ | 207 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_NEW_USER_VIEW_H_ |
OLD | NEW |