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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 // not be listed on screen lock. | 208 // not be listed on screen lock. |
209 prefs3->SetString(prefs::kMultiProfileUserBehavior, | 209 prefs3->SetString(prefs::kMultiProfileUserBehavior, |
210 MultiProfileUserController::kBehaviorNotAllowed); | 210 MultiProfileUserController::kBehaviorNotAllowed); |
211 unlock_users = user_manager->GetUnlockUsers(); | 211 unlock_users = user_manager->GetUnlockUsers(); |
212 ASSERT_EQ(2UL, unlock_users.size()); | 212 ASSERT_EQ(2UL, unlock_users.size()); |
213 for (int i = 0; i < 2; ++i) | 213 for (int i = 0; i < 2; ++i) |
214 EXPECT_EQ(kTestUsers[i], unlock_users[i]->email()); | 214 EXPECT_EQ(kTestUsers[i], unlock_users[i]->email()); |
215 } | 215 } |
216 | 216 |
217 } // namespace chromeos | 217 } // namespace chromeos |
OLD | NEW |