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_EXISTING_USER_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_EXISTING_USER_CONTROLLER_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_EXISTING_USER_CONTROLLER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_EXISTING_USER_CONTROLLER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/ref_counted.h" | 12 #include "base/ref_counted.h" |
13 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
14 #include "base/task.h" | 14 #include "base/task.h" |
15 #include "base/timer.h" | 15 #include "base/timer.h" |
16 #include "chrome/browser/chromeos/login/background_view.h" | 16 #include "chrome/browser/chromeos/login/background_view.h" |
17 #include "chrome/browser/chromeos/login/captcha_view.h" | 17 #include "chrome/browser/chromeos/login/captcha_view.h" |
18 #include "chrome/browser/chromeos/login/login_status_consumer.h" | 18 #include "chrome/browser/chromeos/login/login_status_consumer.h" |
19 #include "chrome/browser/chromeos/login/message_bubble.h" | 19 #include "chrome/browser/chromeos/login/message_bubble.h" |
20 #include "chrome/browser/chromeos/login/password_changed_view.h" | 20 #include "chrome/browser/chromeos/login/password_changed_view.h" |
| 21 #include "chrome/browser/chromeos/login/user_controller.h" |
21 #include "chrome/browser/chromeos/login/user_manager.h" | 22 #include "chrome/browser/chromeos/login/user_manager.h" |
22 #include "chrome/browser/chromeos/login/user_controller.h" | |
23 #include "chrome/browser/chromeos/wm_message_listener.h" | 23 #include "chrome/browser/chromeos/wm_message_listener.h" |
24 #include "chrome/common/net/gaia/gaia_auth_consumer.h" | 24 #include "chrome/common/net/gaia/gaia_auth_consumer.h" |
25 #include "chrome/common/net/gaia/google_service_auth_error.h" | 25 #include "chrome/common/net/gaia/google_service_auth_error.h" |
26 #include "gfx/size.h" | 26 #include "gfx/size.h" |
27 | 27 |
28 namespace chromeos { | 28 namespace chromeos { |
29 | 29 |
30 class Authenticator; | 30 class Authenticator; |
31 class HelpAppLauncher; | 31 class HelpAppLauncher; |
32 class MessageBubble; | 32 class MessageBubble; |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 | 185 |
186 // Help application used for help dialogs. | 186 // Help application used for help dialogs. |
187 scoped_ptr<HelpAppLauncher> help_app_; | 187 scoped_ptr<HelpAppLauncher> help_app_; |
188 | 188 |
189 DISALLOW_COPY_AND_ASSIGN(ExistingUserController); | 189 DISALLOW_COPY_AND_ASSIGN(ExistingUserController); |
190 }; | 190 }; |
191 | 191 |
192 } // namespace chromeos | 192 } // namespace chromeos |
193 | 193 |
194 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_EXISTING_USER_CONTROLLER_H_ | 194 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_EXISTING_USER_CONTROLLER_H_ |
OLD | NEW |