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

Unified Diff: chrome/browser/resources/options/sync_setup_overlay.js

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/resources/options/sync_setup_overlay.js
diff --git a/chrome/browser/resources/options/sync_setup_overlay.js b/chrome/browser/resources/options/sync_setup_overlay.js
index 50a297a373ebead001ce4cd4a1d5da9e1c599bfd..59332d260bfc57d7f887a5f333bab07a934606d8 100644
--- a/chrome/browser/resources/options/sync_setup_overlay.js
+++ b/chrome/browser/resources/options/sync_setup_overlay.js
@@ -842,10 +842,11 @@ cr.define('options', function() {
/**
* Starts the signin process for the user. Does nothing if the user is
* already signed in.
+ * @param {boolean} creatingSupervisedUser
* @private
*/
- startSignIn_: function(accessPoint) {
- chrome.send('SyncSetupStartSignIn', [accessPoint]);
+ startSignIn_: function(creatingSupervisedUser) {
+ chrome.send('SyncSetupStartSignIn', [creatingSupervisedUser]);
},
/**

Powered by Google App Engine
This is Rietveld 408576698