| Index: chrome/browser/ui/webui/settings/people_handler.cc
|
| diff --git a/chrome/browser/ui/webui/settings/people_handler.cc b/chrome/browser/ui/webui/settings/people_handler.cc
|
| index 17d45e950dff183dcf34a03ec675df4d6f197243..ae5f141d65b0741a95b148328ad5d851c644e6e1 100644
|
| --- a/chrome/browser/ui/webui/settings/people_handler.cc
|
| +++ b/chrome/browser/ui/webui/settings/people_handler.cc
|
| @@ -603,7 +603,7 @@ void PeopleHandler::HandleShowSetupUI(const base::ListValue* args) {
|
| // If a setup wizard is present on this page or another, bring it to focus.
|
| // Otherwise, display a new one on this page.
|
| if (!FocusExistingWizardIfPresent())
|
| - OpenSyncSetup(args);
|
| + OpenSyncSetup(false /* creating_supervised_user */);
|
| }
|
|
|
| #if defined(OS_CHROMEOS)
|
| @@ -619,7 +619,9 @@ void PeopleHandler::HandleDoSignOutOnAuthError(const base::ListValue* args) {
|
| void PeopleHandler::HandleStartSignin(const base::ListValue* args) {
|
| // Should only be called if the user is not already signed in.
|
| DCHECK(!SigninManagerFactory::GetForProfile(profile_)->IsAuthenticated());
|
| - OpenSyncSetup(args);
|
| + bool creating_supervised_user = false;
|
| + args->GetBoolean(0, &creating_supervised_user);
|
| + OpenSyncSetup(creating_supervised_user);
|
| }
|
|
|
| void PeopleHandler::HandleStopSyncing(const base::ListValue* args) {
|
| @@ -707,7 +709,7 @@ void PeopleHandler::CloseSyncSetup() {
|
| configuring_sync_ = false;
|
| }
|
|
|
| -void PeopleHandler::OpenSyncSetup(const base::ListValue* args) {
|
| +void PeopleHandler::OpenSyncSetup(bool creating_supervised_user) {
|
| if (!PrepareSyncSetup())
|
| return;
|
|
|
| @@ -732,15 +734,10 @@ void PeopleHandler::OpenSyncSetup(const base::ListValue* args) {
|
| // setup including any visible overlays, and display the gaia auth page.
|
| // Control will be returned to the sync settings page once auth is complete.
|
| CloseUI();
|
| - if (args) {
|
| - std::string access_point = base::UTF16ToUTF8(ExtractStringValue(args));
|
| - if (access_point == "access-point-supervised-user") {
|
| - DisplayGaiaLogin(
|
| - signin_metrics::AccessPoint::ACCESS_POINT_SUPERVISED_USER);
|
| - return;
|
| - }
|
| - }
|
| - DisplayGaiaLogin(signin_metrics::AccessPoint::ACCESS_POINT_SETTINGS);
|
| + DisplayGaiaLogin(
|
| + creating_supervised_user ?
|
| + signin_metrics::AccessPoint::ACCESS_POINT_SUPERVISED_USER :
|
| + signin_metrics::AccessPoint::ACCESS_POINT_SETTINGS);
|
| return;
|
| }
|
| #endif
|
|
|