| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 #include "chrome/browser/chromeos/login/user_manager_impl.h" | 5 #include "chrome/browser/chromeos/login/user_manager_impl.h" |
| 6 | 6 |
| 7 #include <cstddef> | 7 #include <cstddef> |
| 8 #include <set> | 8 #include <set> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "ash/shell.h" | 11 #include "ash/shell.h" |
| 12 #include "base/bind.h" | 12 #include "base/bind.h" |
| 13 #include "base/chromeos/chromeos_version.h" | 13 #include "base/chromeos/chromeos_version.h" |
| 14 #include "base/command_line.h" | 14 #include "base/command_line.h" |
| 15 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
| 16 #include "base/file_path.h" | 16 #include "base/file_path.h" |
| 17 #include "base/file_util.h" | 17 #include "base/file_util.h" |
| 18 #include "base/logging.h" | 18 #include "base/logging.h" |
| 19 #include "base/prefs/pref_registry_simple.h" |
| 20 #include "base/prefs/pref_service.h" |
| 19 #include "base/rand_util.h" | 21 #include "base/rand_util.h" |
| 20 #include "base/stringprintf.h" | 22 #include "base/stringprintf.h" |
| 21 #include "base/utf_string_conversions.h" | 23 #include "base/utf_string_conversions.h" |
| 22 #include "base/values.h" | 24 #include "base/values.h" |
| 23 #include "chrome/browser/browser_process.h" | 25 #include "chrome/browser/browser_process.h" |
| 24 #include "chrome/browser/chromeos/cros/cert_library.h" | 26 #include "chrome/browser/chromeos/cros/cert_library.h" |
| 25 #include "chrome/browser/chromeos/cros/cros_library.h" | 27 #include "chrome/browser/chromeos/cros/cros_library.h" |
| 26 #include "chrome/browser/chromeos/input_method/input_method_manager.h" | 28 #include "chrome/browser/chromeos/input_method/input_method_manager.h" |
| 27 #include "chrome/browser/chromeos/login/login_display.h" | 29 #include "chrome/browser/chromeos/login/login_display.h" |
| 28 #include "chrome/browser/chromeos/login/remove_user_delegate.h" | 30 #include "chrome/browser/chromeos/login/remove_user_delegate.h" |
| 29 #include "chrome/browser/chromeos/login/user_image_manager_impl.h" | 31 #include "chrome/browser/chromeos/login/user_image_manager_impl.h" |
| 30 #include "chrome/browser/chromeos/login/wizard_controller.h" | 32 #include "chrome/browser/chromeos/login/wizard_controller.h" |
| 31 #include "chrome/browser/chromeos/power/session_length_limiter.h" | 33 #include "chrome/browser/chromeos/power/session_length_limiter.h" |
| 32 #include "chrome/browser/policy/browser_policy_connector.h" | 34 #include "chrome/browser/policy/browser_policy_connector.h" |
| 33 #include "chrome/browser/prefs/pref_registry_simple.h" | |
| 34 #include "chrome/browser/prefs/pref_service.h" | |
| 35 #include "chrome/browser/prefs/scoped_user_pref_update.h" | 35 #include "chrome/browser/prefs/scoped_user_pref_update.h" |
| 36 #include "chrome/browser/profiles/profile_manager.h" | 36 #include "chrome/browser/profiles/profile_manager.h" |
| 37 #include "chrome/browser/sync/profile_sync_service.h" | 37 #include "chrome/browser/sync/profile_sync_service.h" |
| 38 #include "chrome/browser/sync/profile_sync_service_factory.h" | 38 #include "chrome/browser/sync/profile_sync_service_factory.h" |
| 39 #include "chrome/common/chrome_notification_types.h" | 39 #include "chrome/common/chrome_notification_types.h" |
| 40 #include "chrome/common/chrome_switches.h" | 40 #include "chrome/common/chrome_switches.h" |
| 41 #include "chrome/common/pref_names.h" | 41 #include "chrome/common/pref_names.h" |
| 42 #include "chromeos/cryptohome/async_method_caller.h" | 42 #include "chromeos/cryptohome/async_method_caller.h" |
| 43 #include "content/public/browser/browser_thread.h" | 43 #include "content/public/browser/browser_thread.h" |
| 44 #include "content/public/browser/notification_service.h" | 44 #include "content/public/browser/notification_service.h" |
| (...skipping 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1081 } | 1081 } |
| 1082 | 1082 |
| 1083 void UserManagerImpl::NotifyUserListChanged() { | 1083 void UserManagerImpl::NotifyUserListChanged() { |
| 1084 content::NotificationService::current()->Notify( | 1084 content::NotificationService::current()->Notify( |
| 1085 chrome::NOTIFICATION_USER_LIST_CHANGED, | 1085 chrome::NOTIFICATION_USER_LIST_CHANGED, |
| 1086 content::Source<UserManager>(this), | 1086 content::Source<UserManager>(this), |
| 1087 content::NotificationService::NoDetails()); | 1087 content::NotificationService::NoDetails()); |
| 1088 } | 1088 } |
| 1089 | 1089 |
| 1090 } // namespace chromeos | 1090 } // namespace chromeos |
| OLD | NEW |