Chromium Code Reviews| Index: chrome/browser/resources/options/supervised_user_list.js |
| diff --git a/chrome/browser/resources/options/supervised_user_list.js b/chrome/browser/resources/options/supervised_user_list.js |
| index fe69256863072e6f9c350e93e010a116bc4b701f..dd86ead6236faac838cdcf9e770328dad9b2c43b 100644 |
| --- a/chrome/browser/resources/options/supervised_user_list.js |
| +++ b/chrome/browser/resources/options/supervised_user_list.js |
| @@ -96,7 +96,10 @@ cr.define('options.supervisedUserOptions', function() { |
| SupervisedUserList.prototype = { |
| __proto__: List.prototype, |
| - /** @override */ |
| + /** |
| + * @override |
| + * @param {Object} entry |
|
Dan Beam
2014/09/11 02:53:09
^ why does this need a @param if it's @override?
Vitaly Pavlenko
2014/09/11 04:16:25
Hm, at least it works. Btw, there's a lot of overl
Dan Beam
2014/09/11 05:26:12
this is fine
Vitaly Pavlenko
2014/09/11 21:12:31
Acknowledged.
|
| + */ |
| createItem: function(entry) { |
| return new SupervisedUserListItem(entry); |
| }, |