| Index: chrome/browser/ui/webui/options/manage_profile_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/manage_profile_handler.cc b/chrome/browser/ui/webui/options/manage_profile_handler.cc
|
| index 94a0929f23a74a9965d8f776095cd9a86ebc1d53..a969d7b8a057c1966ca4bdc180f01bffe3bcb2d9 100644
|
| --- a/chrome/browser/ui/webui/options/manage_profile_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/manage_profile_handler.cc
|
| @@ -18,6 +18,7 @@
|
| #include "chrome/browser/profiles/profile_info_cache.h"
|
| #include "chrome/browser/profiles/profile_info_util.h"
|
| #include "chrome/browser/profiles/profile_manager.h"
|
| +#include "chrome/browser/profiles/profile_manager_util.h"
|
| #include "chrome/browser/profiles/profile_metrics.h"
|
| #include "chrome/browser/profiles/profile_shortcut_manager.h"
|
| #include "chrome/browser/signin/signin_manager.h"
|
| @@ -65,7 +66,7 @@ void OnNewDefaultProfileCreated(
|
| Profile* profile,
|
| Profile::CreateStatus status) {
|
| if (status == Profile::CREATE_STATUS_INITIALIZED) {
|
| - ProfileManager::FindOrCreateNewWindowForProfile(
|
| + profiles::FindOrCreateNewWindowForProfile(
|
| profile,
|
| chrome::startup::IS_PROCESS_STARTUP,
|
| chrome::startup::IS_FIRST_RUN,
|
| @@ -327,7 +328,7 @@ void ManageProfileHandler::SetProfileNameAndIcon(const ListValue* args) {
|
| #if defined(ENABLE_SETTINGS_APP)
|
| void ManageProfileHandler::SwitchAppListProfile(const ListValue* args) {
|
| DCHECK(args);
|
| - DCHECK(ProfileManager::IsMultipleProfilesEnabled());
|
| + DCHECK(profiles::IsMultipleProfilesEnabled());
|
|
|
| const Value* file_path_value;
|
| base::FilePath profile_file_path;
|
|
|