| Index: chrome/browser/profiles/profile_window.cc
|
| diff --git a/chrome/browser/profiles/profile_window.cc b/chrome/browser/profiles/profile_window.cc
|
| index 93524af7637413dec75f2a1973150844ddd1a9de..59130c301fe4b7412b9cd4c42b80126ca50fa880 100644
|
| --- a/chrome/browser/profiles/profile_window.cc
|
| +++ b/chrome/browser/profiles/profile_window.cc
|
| @@ -169,6 +169,9 @@ void OnUserManagerGuestProfileCreated(
|
| } else if (profile_open_action ==
|
| profiles::USER_MANAGER_SELECT_PROFILE_ABOUT_CHROME) {
|
| page += profiles::kUserManagerSelectProfileAboutChrome;
|
| + } else if (profile_open_action ==
|
| + profiles::USER_MANAGER_SELECT_PROFILE_CHROME_SETTINGS) {
|
| + page += profiles::kUserManagerSelectProfileChromeSettings;
|
| }
|
| callback.Run(guest_profile, page);
|
| }
|
| @@ -190,6 +193,7 @@ namespace profiles {
|
| const char kUserManagerDisplayTutorial[] = "#tutorial";
|
| const char kUserManagerSelectProfileTaskManager[] = "#task-manager";
|
| const char kUserManagerSelectProfileAboutChrome[] = "#about-chrome";
|
| +const char kUserManagerSelectProfileChromeSettings[] = "#chrome-settings";
|
|
|
| void FindOrCreateNewWindowForProfile(
|
| Profile* profile,
|
|
|