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_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 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "chrome/browser/chromeos/login/ownership_status_checker.h" | 21 #include "chrome/browser/chromeos/login/ownership_status_checker.h" |
22 #include "chrome/browser/chromeos/login/password_changed_view.h" | 22 #include "chrome/browser/chromeos/login/password_changed_view.h" |
23 #include "chrome/browser/chromeos/login/user.h" | 23 #include "chrome/browser/chromeos/login/user.h" |
24 #include "content/public/browser/notification_observer.h" | 24 #include "content/public/browser/notification_observer.h" |
25 #include "content/public/browser/notification_registrar.h" | 25 #include "content/public/browser/notification_registrar.h" |
26 #include "googleurl/src/gurl.h" | 26 #include "googleurl/src/gurl.h" |
27 #include "testing/gtest/include/gtest/gtest_prod.h" | 27 #include "testing/gtest/include/gtest/gtest_prod.h" |
28 #include "ui/gfx/rect.h" | 28 #include "ui/gfx/rect.h" |
29 | 29 |
30 #if defined(TOOLKIT_USES_GTK) | 30 #if defined(TOOLKIT_USES_GTK) |
31 #include "chrome/browser/chromeos/wm_message_listener.h" | 31 #include "chrome/browser/chromeos/legacy_window_manager/wm_message_listener.h" |
32 #endif | 32 #endif |
33 | 33 |
34 namespace chromeos { | 34 namespace chromeos { |
35 | 35 |
36 class LoginDisplayHost; | 36 class LoginDisplayHost; |
37 class UserCrosSettingsProvider; | 37 class UserCrosSettingsProvider; |
38 | 38 |
39 // ExistingUserController is used to handle login when someone has | 39 // ExistingUserController is used to handle login when someone has |
40 // already logged into the machine. | 40 // already logged into the machine. |
41 // To use ExistingUserController create an instance of it and invoke Init. | 41 // To use ExistingUserController create an instance of it and invoke Init. |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 bool is_owner_login_; | 203 bool is_owner_login_; |
204 | 204 |
205 FRIEND_TEST_ALL_PREFIXES(ExistingUserControllerTest, NewUserLogin); | 205 FRIEND_TEST_ALL_PREFIXES(ExistingUserControllerTest, NewUserLogin); |
206 | 206 |
207 DISALLOW_COPY_AND_ASSIGN(ExistingUserController); | 207 DISALLOW_COPY_AND_ASSIGN(ExistingUserController); |
208 }; | 208 }; |
209 | 209 |
210 } // namespace chromeos | 210 } // namespace chromeos |
211 | 211 |
212 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_EXISTING_USER_CONTROLLER_H_ | 212 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_EXISTING_USER_CONTROLLER_H_ |
OLD | NEW |