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 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
9 #include "base/files/scoped_temp_dir.h" | 9 #include "base/files/scoped_temp_dir.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 #include "chrome/browser/profiles/profile.h" | 24 #include "chrome/browser/profiles/profile.h" |
25 #include "chrome/browser/profiles/profile_avatar_icon_util.h" | 25 #include "chrome/browser/profiles/profile_avatar_icon_util.h" |
26 #include "chrome/browser/profiles/profile_info_cache.h" | 26 #include "chrome/browser/profiles/profile_info_cache.h" |
27 #include "chrome/browser/profiles/profile_manager.h" | 27 #include "chrome/browser/profiles/profile_manager.h" |
28 #include "chrome/browser/profiles/profiles_state.h" | 28 #include "chrome/browser/profiles/profiles_state.h" |
29 #include "chrome/browser/ui/browser.h" | 29 #include "chrome/browser/ui/browser.h" |
30 #include "chrome/common/chrome_constants.h" | 30 #include "chrome/common/chrome_constants.h" |
31 #include "chrome/common/chrome_paths.h" | 31 #include "chrome/common/chrome_paths.h" |
32 #include "chrome/common/chrome_switches.h" | 32 #include "chrome/common/chrome_switches.h" |
33 #include "chrome/common/pref_names.h" | 33 #include "chrome/common/pref_names.h" |
| 34 #include "chrome/grit/generated_resources.h" |
34 #include "chrome/test/base/scoped_testing_local_state.h" | 35 #include "chrome/test/base/scoped_testing_local_state.h" |
35 #include "chrome/test/base/test_browser_window.h" | 36 #include "chrome/test/base/test_browser_window.h" |
36 #include "chrome/test/base/testing_browser_process.h" | 37 #include "chrome/test/base/testing_browser_process.h" |
37 #include "chrome/test/base/testing_profile.h" | 38 #include "chrome/test/base/testing_profile.h" |
38 #include "components/signin/core/common/profile_management_switches.h" | 39 #include "components/signin/core/common/profile_management_switches.h" |
39 #include "content/public/browser/notification_service.h" | 40 #include "content/public/browser/notification_service.h" |
40 #include "content/public/common/content_switches.h" | 41 #include "content/public/common/content_switches.h" |
41 #include "content/public/test/test_browser_thread_bundle.h" | 42 #include "content/public/test/test_browser_thread_bundle.h" |
42 #include "grit/generated_resources.h" | |
43 #include "testing/gmock/include/gmock/gmock.h" | 43 #include "testing/gmock/include/gmock/gmock.h" |
44 #include "testing/gtest/include/gtest/gtest.h" | 44 #include "testing/gtest/include/gtest/gtest.h" |
45 #include "ui/base/l10n/l10n_util.h" | 45 #include "ui/base/l10n/l10n_util.h" |
46 | 46 |
47 #if defined(OS_CHROMEOS) | 47 #if defined(OS_CHROMEOS) |
48 #include "chrome/browser/chromeos/login/users/mock_user_manager.h" | 48 #include "chrome/browser/chromeos/login/users/mock_user_manager.h" |
49 #include "chrome/browser/chromeos/login/users/scoped_test_user_manager.h" | 49 #include "chrome/browser/chromeos/login/users/scoped_test_user_manager.h" |
50 #include "chrome/browser/chromeos/settings/cros_settings.h" | 50 #include "chrome/browser/chromeos/settings/cros_settings.h" |
51 #include "chrome/browser/chromeos/settings/device_settings_service.h" | 51 #include "chrome/browser/chromeos/settings/device_settings_service.h" |
52 #include "chromeos/chromeos_switches.h" | 52 #include "chromeos/chromeos_switches.h" |
(...skipping 1156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1209 dest_path2.BaseName().MaybeAsASCII()); | 1209 dest_path2.BaseName().MaybeAsASCII()); |
1210 profile_manager->ScheduleProfileForDeletion(dest_path2, | 1210 profile_manager->ScheduleProfileForDeletion(dest_path2, |
1211 ProfileManager::CreateCallback()); | 1211 ProfileManager::CreateCallback()); |
1212 // Spin the message loop so that all the callbacks can finish running. | 1212 // Spin the message loop so that all the callbacks can finish running. |
1213 base::RunLoop().RunUntilIdle(); | 1213 base::RunLoop().RunUntilIdle(); |
1214 | 1214 |
1215 EXPECT_EQ(dest_path3, profile_manager->GetLastUsedProfile()->GetPath()); | 1215 EXPECT_EQ(dest_path3, profile_manager->GetLastUsedProfile()->GetPath()); |
1216 EXPECT_EQ(profile_name3, local_state->GetString(prefs::kProfileLastUsed)); | 1216 EXPECT_EQ(profile_name3, local_state->GetString(prefs::kProfileLastUsed)); |
1217 } | 1217 } |
1218 #endif // !defined(OS_MACOSX) | 1218 #endif // !defined(OS_MACOSX) |
OLD | NEW |