| Index: chrome/browser/resources/options/supervised_user_import.js
|
| diff --git a/chrome/browser/resources/options/supervised_user_import.js b/chrome/browser/resources/options/supervised_user_import.js
|
| index a8ec33c93e0eaebcd2175a54f09c01c640cc5fe0..edfaa35cdbe248447b3298246f3f6f1555008d17 100644
|
| --- a/chrome/browser/resources/options/supervised_user_import.js
|
| +++ b/chrome/browser/resources/options/supervised_user_import.js
|
| @@ -175,15 +175,9 @@ cr.define('options', function() {
|
|
|
| /**
|
| * Sets the data model of the supervised user list to |supervisedUsers|.
|
| - * @param {Array.<Object>} supervisedUsers Array of supervised user objects.
|
| - * Each object is of the form:
|
| - * supervisedUser = {
|
| - * id: "Supervised User ID",
|
| - * name: "Supervised User Name",
|
| - * iconURL: "chrome://path/to/icon/image",
|
| - * onCurrentDevice: true or false,
|
| - * needAvatar: true or false
|
| - * }
|
| + * @param {Array.<{id: string, name: string, iconURL: string,
|
| + * onCurrentDevice: boolean, needAvatar: boolean}>} supervisedUsers
|
| + * Array of supervised user objects.
|
| * @private
|
| */
|
| receiveExistingSupervisedUsers_: function(supervisedUsers) {
|
|
|