| 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 |
| 11 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
| 12 #include "base/ref_counted.h" | |
| 13 #include "chrome/browser/chromeos/login/language_switch_menu.h" | 12 #include "chrome/browser/chromeos/login/language_switch_menu.h" |
| 14 #include "views/accelerator.h" | 13 #include "views/accelerator.h" |
| 15 #include "views/controls/button/button.h" | 14 #include "views/controls/button/button.h" |
| 16 #include "views/controls/button/menu_button.h" | 15 #include "views/controls/button/menu_button.h" |
| 17 #include "views/controls/link.h" | 16 #include "views/controls/link.h" |
| 18 #include "views/controls/textfield/textfield.h" | 17 #include "views/controls/textfield/textfield.h" |
| 19 #include "views/view.h" | 18 #include "views/view.h" |
| 20 | 19 |
| 21 namespace views { | 20 namespace views { |
| 22 class Label; | 21 class Label; |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 | 162 |
| 164 FRIEND_TEST_ALL_PREFIXES(LoginScreenTest, IncognitoLogin); | 163 FRIEND_TEST_ALL_PREFIXES(LoginScreenTest, IncognitoLogin); |
| 165 friend class LoginScreenTest; | 164 friend class LoginScreenTest; |
| 166 | 165 |
| 167 DISALLOW_COPY_AND_ASSIGN(NewUserView); | 166 DISALLOW_COPY_AND_ASSIGN(NewUserView); |
| 168 }; | 167 }; |
| 169 | 168 |
| 170 } // namespace chromeos | 169 } // namespace chromeos |
| 171 | 170 |
| 172 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_NEW_USER_VIEW_H_ | 171 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_NEW_USER_VIEW_H_ |
| OLD | NEW |