Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7651)

Unified Diff: chrome/browser/ui/webui/settings/people_handler.cc

Issue 1608103002: Settings Rewrite: Fix Opening Sync User login (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « chrome/browser/ui/webui/settings/people_handler.h ('k') | chrome/browser/ui/webui/settings/people_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698