| 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 <vector> | 5 #include <vector> |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
| 9 #include "base/callback.h" | 9 #include "base/callback.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "chrome/browser/chromeos/login/users/scoped_user_manager_enabler.h" | 21 #include "chrome/browser/chromeos/login/users/scoped_user_manager_enabler.h" |
| 22 #include "chrome/browser/chromeos/login/wizard_controller.h" | 22 #include "chrome/browser/chromeos/login/wizard_controller.h" |
| 23 #include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h" | 23 #include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h" |
| 24 #include "chrome/browser/chromeos/policy/device_local_account.h" | 24 #include "chrome/browser/chromeos/policy/device_local_account.h" |
| 25 #include "chrome/browser/chromeos/policy/device_local_account_policy_service.h" | 25 #include "chrome/browser/chromeos/policy/device_local_account_policy_service.h" |
| 26 #include "chrome/browser/chromeos/policy/device_policy_cros_browser_test.h" | 26 #include "chrome/browser/chromeos/policy/device_policy_cros_browser_test.h" |
| 27 #include "chrome/browser/chromeos/policy/proto/chrome_device_policy.pb.h" | 27 #include "chrome/browser/chromeos/policy/proto/chrome_device_policy.pb.h" |
| 28 #include "chrome/browser/chromeos/settings/cros_settings.h" | 28 #include "chrome/browser/chromeos/settings/cros_settings.h" |
| 29 #include "chrome/test/base/testing_browser_process.h" | 29 #include "chrome/test/base/testing_browser_process.h" |
| 30 #include "chrome/test/base/testing_profile.h" | 30 #include "chrome/test/base/testing_profile.h" |
| 31 #include "chrome/test/base/ui_test_utils.h" | |
| 32 #include "chromeos/chromeos_switches.h" | 31 #include "chromeos/chromeos_switches.h" |
| 33 #include "chromeos/dbus/fake_session_manager_client.h" | 32 #include "chromeos/dbus/fake_session_manager_client.h" |
| 34 #include "chromeos/login/auth/authenticator.h" | 33 #include "chromeos/login/auth/authenticator.h" |
| 35 #include "chromeos/login/auth/key.h" | 34 #include "chromeos/login/auth/key.h" |
| 36 #include "chromeos/login/auth/mock_authenticator.h" | 35 #include "chromeos/login/auth/mock_authenticator.h" |
| 37 #include "chromeos/login/auth/mock_url_fetchers.h" | 36 #include "chromeos/login/auth/mock_url_fetchers.h" |
| 38 #include "chromeos/login/auth/user_context.h" | 37 #include "chromeos/login/auth/user_context.h" |
| 39 #include "chromeos/settings/cros_settings_names.h" | 38 #include "chromeos/settings/cros_settings_names.h" |
| 40 #include "components/policy/core/common/cloud/cloud_policy_constants.h" | 39 #include "components/policy/core/common/cloud/cloud_policy_constants.h" |
| 41 #include "components/policy/core/common/cloud/cloud_policy_core.h" | 40 #include "components/policy/core/common/cloud/cloud_policy_core.h" |
| (...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 671 // First run propagates public accounts and stores them in Local State. | 670 // First run propagates public accounts and stores them in Local State. |
| 672 } | 671 } |
| 673 | 672 |
| 674 // See http://crbug.com/393704; flaky. | 673 // See http://crbug.com/393704; flaky. |
| 675 IN_PROC_BROWSER_TEST_F(ExistingUserControllerPublicSessionTest, | 674 IN_PROC_BROWSER_TEST_F(ExistingUserControllerPublicSessionTest, |
| 676 DISABLED_TestLoadingPublicUsersFromLocalState) { | 675 DISABLED_TestLoadingPublicUsersFromLocalState) { |
| 677 // Second run loads list of public accounts from Local State. | 676 // Second run loads list of public accounts from Local State. |
| 678 } | 677 } |
| 679 | 678 |
| 680 } // namespace chromeos | 679 } // namespace chromeos |
| OLD | NEW |