| 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 #include "chrome/browser/chromeos/login/users/chrome_user_manager_impl.h" | 5 #include "chrome/browser/chromeos/login/users/chrome_user_manager_impl.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <cstddef> | 9 #include <cstddef> |
| 10 #include <set> | 10 #include <set> |
| 11 #include <utility> | 11 #include <utility> |
| 12 | 12 |
| 13 #include "ash/multi_profile_uma.h" | 13 #include "ash/multi_profile_uma.h" |
| 14 #include "base/bind.h" | 14 #include "base/bind.h" |
| 15 #include "base/bind_helpers.h" | 15 #include "base/bind_helpers.h" |
| 16 #include "base/command_line.h" | 16 #include "base/command_line.h" |
| 17 #include "base/compiler_specific.h" | 17 #include "base/compiler_specific.h" |
| 18 #include "base/format_macros.h" | 18 #include "base/format_macros.h" |
| 19 #include "base/logging.h" | 19 #include "base/logging.h" |
| 20 #include "base/memory/ptr_util.h" | 20 #include "base/memory/ptr_util.h" |
| 21 #include "base/metrics/histogram.h" | 21 #include "base/metrics/histogram.h" |
| 22 #include "base/strings/string_util.h" | 22 #include "base/strings/string_util.h" |
| 23 #include "base/strings/stringprintf.h" | 23 #include "base/strings/stringprintf.h" |
| 24 #include "base/strings/utf_string_conversions.h" | 24 #include "base/strings/utf_string_conversions.h" |
| 25 #include "base/sys_info.h" | 25 #include "base/sys_info.h" |
| 26 #include "base/task_runner.h" | 26 #include "base/task_runner.h" |
| 27 #include "base/thread_task_runner_handle.h" | 27 #include "base/threading/thread_task_runner_handle.h" |
| 28 #include "base/values.h" | 28 #include "base/values.h" |
| 29 #include "chrome/browser/browser_process.h" | 29 #include "chrome/browser/browser_process.h" |
| 30 #include "chrome/browser/chrome_notification_types.h" | 30 #include "chrome/browser/chrome_notification_types.h" |
| 31 #include "chrome/browser/chromeos/login/demo_mode/demo_app_launcher.h" | 31 #include "chrome/browser/chromeos/login/demo_mode/demo_app_launcher.h" |
| 32 #include "chrome/browser/chromeos/login/session/user_session_manager.h" | 32 #include "chrome/browser/chromeos/login/session/user_session_manager.h" |
| 33 #include "chrome/browser/chromeos/login/signin/auth_sync_observer.h" | 33 #include "chrome/browser/chromeos/login/signin/auth_sync_observer.h" |
| 34 #include "chrome/browser/chromeos/login/signin/auth_sync_observer_factory.h" | 34 #include "chrome/browser/chromeos/login/signin/auth_sync_observer_factory.h" |
| 35 #include "chrome/browser/chromeos/login/users/affiliation.h" | 35 #include "chrome/browser/chromeos/login/users/affiliation.h" |
| 36 #include "chrome/browser/chromeos/login/users/avatar/user_image_manager_impl.h" | 36 #include "chrome/browser/chromeos/login/users/avatar/user_image_manager_impl.h" |
| 37 #include "chrome/browser/chromeos/login/users/chrome_user_manager_util.h" | 37 #include "chrome/browser/chromeos/login/users/chrome_user_manager_util.h" |
| (...skipping 1284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1322 break; | 1322 break; |
| 1323 default: | 1323 default: |
| 1324 NOTREACHED(); | 1324 NOTREACHED(); |
| 1325 break; | 1325 break; |
| 1326 } | 1326 } |
| 1327 | 1327 |
| 1328 return user; | 1328 return user; |
| 1329 } | 1329 } |
| 1330 | 1330 |
| 1331 } // namespace chromeos | 1331 } // namespace chromeos |
| OLD | NEW |