| Index: chrome/browser/resources/md_user_manager/profile_browser_proxy.js
|
| diff --git a/chrome/browser/resources/md_user_manager/profile_browser_proxy.js b/chrome/browser/resources/md_user_manager/profile_browser_proxy.js
|
| index 63bcb725f23e7ed006c3ad95881aa1b925e595a8..a4ca0ba76d92ad20a724333a0bfcea4b643c0944 100644
|
| --- a/chrome/browser/resources/md_user_manager/profile_browser_proxy.js
|
| +++ b/chrome/browser/resources/md_user_manager/profile_browser_proxy.js
|
| @@ -69,11 +69,13 @@ cr.define('signin', function() {
|
| * @param {string} profileIconUrl URL of the selected icon of the new
|
| * profile.
|
| * @param {boolean} isSupervised True if the new profile is supervised.
|
| + * @param {string} supervisedUserId ID of the supervised user to be
|
| + * imported.
|
| * @param {string} custodianProfilePath Profile path of the custodian if
|
| * the new profile is supervised.
|
| */
|
| createProfile: function(profileName, profileIconUrl, isSupervised,
|
| - custodianProfilePath) {
|
| + supervisedUserId, custodianProfilePath) {
|
| assertNotReached();
|
| },
|
|
|
| @@ -152,10 +154,10 @@ cr.define('signin', function() {
|
|
|
| /** @override */
|
| createProfile: function(profileName, profileIconUrl, isSupervised,
|
| - custodianProfilePath) {
|
| + supervisedUserId, custodianProfilePath) {
|
| chrome.send('createProfile',
|
| - [profileName, profileIconUrl, false, isSupervised, '',
|
| - custodianProfilePath]);
|
| + [profileName, profileIconUrl, false, isSupervised,
|
| + supervisedUserId, custodianProfilePath]);
|
| },
|
|
|
| /** @override */
|
|
|