OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_SESSION_USER_SESSION_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_USER_SESSION_MANAGER_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_USER_SESSION_MANAGER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_USER_SESSION_MANAGER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/callback.h" | 11 #include "base/callback.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/memory/singleton.h" | 13 #include "base/memory/singleton.h" |
14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
15 #include "base/observer_list.h" | 15 #include "base/observer_list.h" |
16 #include "chrome/browser/chromeos/base/locale_util.h" | 16 #include "chrome/browser/chromeos/base/locale_util.h" |
17 #include "chrome/browser/chromeos/login/signin/oauth2_login_manager.h" | 17 #include "chrome/browser/chromeos/login/signin/oauth2_login_manager.h" |
18 #include "chromeos/dbus/session_manager_client.h" | 18 #include "chromeos/dbus/session_manager_client.h" |
| 19 #include "chromeos/ime/input_method_manager.h" |
19 #include "chromeos/login/auth/authenticator.h" | 20 #include "chromeos/login/auth/authenticator.h" |
20 #include "chromeos/login/auth/user_context.h" | 21 #include "chromeos/login/auth/user_context.h" |
21 #include "components/user_manager/user.h" | 22 #include "components/user_manager/user.h" |
22 #include "components/user_manager/user_manager.h" | 23 #include "components/user_manager/user_manager.h" |
23 #include "net/base/network_change_notifier.h" | 24 #include "net/base/network_change_notifier.h" |
24 #include "ui/base/ime/chromeos/input_method_manager.h" | |
25 | 25 |
26 class GURL; | 26 class GURL; |
27 class PrefRegistrySimple; | 27 class PrefRegistrySimple; |
28 class PrefService; | 28 class PrefService; |
29 class Profile; | 29 class Profile; |
30 | 30 |
31 namespace user_manager { | 31 namespace user_manager { |
32 | 32 |
33 class User; | 33 class User; |
34 | 34 |
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
377 scoped_ptr<EasyUnlockKeyManager> easy_unlock_key_manager_; | 377 scoped_ptr<EasyUnlockKeyManager> easy_unlock_key_manager_; |
378 bool running_easy_unlock_key_ops_; | 378 bool running_easy_unlock_key_ops_; |
379 base::Closure easy_unlock_key_ops_finished_callback_; | 379 base::Closure easy_unlock_key_ops_finished_callback_; |
380 | 380 |
381 DISALLOW_COPY_AND_ASSIGN(UserSessionManager); | 381 DISALLOW_COPY_AND_ASSIGN(UserSessionManager); |
382 }; | 382 }; |
383 | 383 |
384 } // namespace chromeos | 384 } // namespace chromeos |
385 | 385 |
386 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_USER_SESSION_MANAGER_H_ | 386 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_USER_SESSION_MANAGER_H_ |
OLD | NEW |