OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <string> | 5 #include <string> |
6 #include <vector> | 6 #include <vector> |
7 | 7 |
8 #include "base/bind.h" | 8 #include "base/bind.h" |
9 #include "base/bind_helpers.h" | 9 #include "base/bind_helpers.h" |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
12 #include "base/location.h" | 12 #include "base/location.h" |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
14 #include "base/memory/ptr_util.h" | 14 #include "base/memory/ptr_util.h" |
15 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
16 #include "base/run_loop.h" | 16 #include "base/run_loop.h" |
| 17 #include "base/threading/thread_task_runner_handle.h" |
17 #include "chrome/browser/chrome_notification_types.h" | 18 #include "chrome/browser/chrome_notification_types.h" |
18 #include "chrome/browser/chromeos/login/existing_user_controller.h" | 19 #include "chrome/browser/chromeos/login/existing_user_controller.h" |
19 #include "chrome/browser/chromeos/login/help_app_launcher.h" | 20 #include "chrome/browser/chromeos/login/help_app_launcher.h" |
20 #include "chrome/browser/chromeos/login/helper.h" | 21 #include "chrome/browser/chromeos/login/helper.h" |
21 #include "chrome/browser/chromeos/login/screens/mock_base_screen_delegate.h" | 22 #include "chrome/browser/chromeos/login/screens/mock_base_screen_delegate.h" |
22 #include "chrome/browser/chromeos/login/session/user_session_manager.h" | 23 #include "chrome/browser/chromeos/login/session/user_session_manager.h" |
23 #include "chrome/browser/chromeos/login/session/user_session_manager_test_api.h" | 24 #include "chrome/browser/chromeos/login/session/user_session_manager_test_api.h" |
24 #include "chrome/browser/chromeos/login/supervised/supervised_user_creation_scre
en.h" | 25 #include "chrome/browser/chromeos/login/supervised/supervised_user_creation_scre
en.h" |
25 #include "chrome/browser/chromeos/login/ui/mock_login_display.h" | 26 #include "chrome/browser/chromeos/login/ui/mock_login_display.h" |
26 #include "chrome/browser/chromeos/login/ui/mock_login_display_host.h" | 27 #include "chrome/browser/chromeos/login/ui/mock_login_display_host.h" |
(...skipping 730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
757 PRE_TestLoadingPublicUsersFromLocalState) { | 758 PRE_TestLoadingPublicUsersFromLocalState) { |
758 // First run propagates public accounts and stores them in Local State. | 759 // First run propagates public accounts and stores them in Local State. |
759 } | 760 } |
760 | 761 |
761 IN_PROC_BROWSER_TEST_F(ExistingUserControllerPublicSessionTest, | 762 IN_PROC_BROWSER_TEST_F(ExistingUserControllerPublicSessionTest, |
762 TestLoadingPublicUsersFromLocalState) { | 763 TestLoadingPublicUsersFromLocalState) { |
763 // Second run loads list of public accounts from Local State. | 764 // Second run loads list of public accounts from Local State. |
764 } | 765 } |
765 | 766 |
766 } // namespace chromeos | 767 } // namespace chromeos |
OLD | NEW |