| 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" | |
| 20 #include "chromeos/login/auth/authenticator.h" | 19 #include "chromeos/login/auth/authenticator.h" |
| 21 #include "chromeos/login/auth/user_context.h" | 20 #include "chromeos/login/auth/user_context.h" |
| 22 #include "components/user_manager/user.h" | 21 #include "components/user_manager/user.h" |
| 23 #include "components/user_manager/user_manager.h" | 22 #include "components/user_manager/user_manager.h" |
| 24 #include "net/base/network_change_notifier.h" | 23 #include "net/base/network_change_notifier.h" |
| 24 #include "ui/chromeos/ime/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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 scoped_ptr<EasyUnlockKeyManager> easy_unlock_key_manager_; | 357 scoped_ptr<EasyUnlockKeyManager> easy_unlock_key_manager_; |
| 358 bool running_easy_unlock_key_ops_; | 358 bool running_easy_unlock_key_ops_; |
| 359 base::Closure easy_unlock_key_ops_finished_callback_; | 359 base::Closure easy_unlock_key_ops_finished_callback_; |
| 360 | 360 |
| 361 DISALLOW_COPY_AND_ASSIGN(UserSessionManager); | 361 DISALLOW_COPY_AND_ASSIGN(UserSessionManager); |
| 362 }; | 362 }; |
| 363 | 363 |
| 364 } // namespace chromeos | 364 } // namespace chromeos |
| 365 | 365 |
| 366 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_USER_SESSION_MANAGER_H_ | 366 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SESSION_USER_SESSION_MANAGER_H_ |
| OLD | NEW |