| 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 a338ccb7394fbc150bb4742b929340203db3e8fd..db7a346fc188fe3e1a3e8a437c64f8f8c62ebb22 100644
|
| --- a/chrome/browser/ui/webui/options/manage_profile_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/manage_profile_handler.cc
|
| @@ -22,6 +22,8 @@
|
| #include "chrome/browser/profiles/profile_manager.h"
|
| #include "chrome/browser/profiles/profile_metrics.h"
|
| #include "chrome/browser/profiles/profile_shortcut_manager.h"
|
| +#include "chrome/browser/profiles/profile_window.h"
|
| +#include "chrome/browser/profiles/profiles_state.h"
|
| #include "chrome/browser/signin/signin_manager.h"
|
| #include "chrome/browser/signin/signin_manager_factory.h"
|
| #include "chrome/browser/ui/browser_finder.h"
|
| @@ -66,7 +68,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,
|
| @@ -328,7 +330,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;
|
|
|