| Index: chrome/browser/ui/webui/options/create_profile_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/create_profile_handler.cc b/chrome/browser/ui/webui/options/create_profile_handler.cc
|
| index a2ac78789ee5f99d335d1ef846e7e75d4ec7ec75..836b6f058c857063c115c939a87d221b0874e171 100644
|
| --- a/chrome/browser/ui/webui/options/create_profile_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/create_profile_handler.cc
|
| @@ -113,7 +113,7 @@ void CreateProfileHandler::CreateProfile(const base::ListValue* args) {
|
|
|
| void CreateProfileHandler::OnProfileCreated(
|
| bool create_shortcut,
|
| - chrome::HostDesktopType desktop_type,
|
| + ui::HostDesktopType desktop_type,
|
| const std::string& supervised_user_id,
|
| Profile* profile,
|
| Profile::CreateStatus status) {
|
| @@ -149,7 +149,7 @@ void CreateProfileHandler::OnProfileCreated(
|
|
|
| void CreateProfileHandler::HandleProfileCreationSuccess(
|
| bool create_shortcut,
|
| - chrome::HostDesktopType desktop_type,
|
| + ui::HostDesktopType desktop_type,
|
| const std::string& supervised_user_id,
|
| Profile* profile) {
|
| switch (profile_creation_type_) {
|
| @@ -173,7 +173,7 @@ void CreateProfileHandler::HandleProfileCreationSuccess(
|
|
|
| void CreateProfileHandler::CreateShortcutAndShowSuccess(
|
| bool create_shortcut,
|
| - chrome::HostDesktopType desktop_type,
|
| + ui::HostDesktopType desktop_type,
|
| Profile* profile) {
|
| if (create_shortcut) {
|
| ProfileShortcutManager* shortcut_manager =
|
| @@ -377,7 +377,7 @@ void CreateProfileHandler::CancelProfileRegistration(bool user_initiated) {
|
|
|
| void CreateProfileHandler::RegisterSupervisedUser(
|
| bool create_shortcut,
|
| - chrome::HostDesktopType desktop_type,
|
| + ui::HostDesktopType desktop_type,
|
| const std::string& supervised_user_id,
|
| Profile* new_profile) {
|
| DCHECK_EQ(profile_path_being_created_.value(),
|
| @@ -402,7 +402,7 @@ void CreateProfileHandler::RegisterSupervisedUser(
|
|
|
| void CreateProfileHandler::OnSupervisedUserRegistered(
|
| bool create_shortcut,
|
| - chrome::HostDesktopType desktop_type,
|
| + ui::HostDesktopType desktop_type,
|
| Profile* profile,
|
| const GoogleServiceAuthError& error) {
|
| GoogleServiceAuthError::State state = error.state();
|
|
|