| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 "ash/session_state_delegate.h" | 5 #include "ash/session/session_state_delegate.h" |
| 6 #include "ash/shell.h" | 6 #include "ash/shell.h" |
| 7 #include "base/prefs/pref_service.h" | 7 #include "base/prefs/pref_service.h" |
| 8 #include "chrome/browser/chromeos/login/login_display_host_impl.h" | 8 #include "chrome/browser/chromeos/login/login_display_host_impl.h" |
| 9 #include "chrome/browser/chromeos/login/login_manager_test.h" | 9 #include "chrome/browser/chromeos/login/login_manager_test.h" |
| 10 #include "chrome/browser/chromeos/login/multi_profile_user_controller.h" | 10 #include "chrome/browser/chromeos/login/multi_profile_user_controller.h" |
| 11 #include "chrome/browser/chromeos/login/startup_utils.h" | 11 #include "chrome/browser/chromeos/login/startup_utils.h" |
| 12 #include "chrome/browser/chromeos/login/user_adding_screen.h" | 12 #include "chrome/browser/chromeos/login/user_adding_screen.h" |
| 13 #include "chrome/browser/chromeos/login/user_manager.h" | 13 #include "chrome/browser/chromeos/login/user_manager.h" |
| 14 #include "chrome/common/chrome_switches.h" | 14 #include "chrome/common/chrome_switches.h" |
| 15 #include "chrome/common/pref_names.h" | 15 #include "chrome/common/pref_names.h" |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 // not be listed on screen lock. | 207 // not be listed on screen lock. |
| 208 prefs3->SetString(prefs::kMultiProfileUserBehavior, | 208 prefs3->SetString(prefs::kMultiProfileUserBehavior, |
| 209 MultiProfileUserController::kBehaviorNotAllowed); | 209 MultiProfileUserController::kBehaviorNotAllowed); |
| 210 unlock_users = user_manager->GetUnlockUsers(); | 210 unlock_users = user_manager->GetUnlockUsers(); |
| 211 ASSERT_EQ(2UL, unlock_users.size()); | 211 ASSERT_EQ(2UL, unlock_users.size()); |
| 212 for (int i = 0; i < 2; ++i) | 212 for (int i = 0; i < 2; ++i) |
| 213 EXPECT_EQ(kTestUsers[i], unlock_users[i]->email()); | 213 EXPECT_EQ(kTestUsers[i], unlock_users[i]->email()); |
| 214 } | 214 } |
| 215 | 215 |
| 216 } // namespace chromeos | 216 } // namespace chromeos |
| OLD | NEW |