| Index: chrome/browser/resources/options/origin_resources_list.js
|
| diff --git a/chrome/browser/resources/options/origin_resources_list.js b/chrome/browser/resources/options/origin_resources_list.js
|
| index 7124c67c77ff2ca6ed29548c6da3ca342490133b..144ba0b00469fba9e097738a776d46aee37f5f62 100644
|
| --- a/chrome/browser/resources/options/origin_resources_list.js
|
| +++ b/chrome/browser/resources/options/origin_resources_list.js
|
| @@ -3,12 +3,14 @@
|
| // found in the LICENSE file.
|
|
|
| cr.define('options', function() {
|
| - /** @const */ List = cr.ui.List;
|
| - /** @const */ ListItem = cr.ui.ListItem;
|
| + /** @const */ var List = cr.ui.List;
|
| + /** @const */ var ListItem = cr.ui.ListItem;
|
|
|
| /**
|
| * Creates a new list item for the origin's data.
|
| * @param {!Object} origin Data used to create the origin list item.
|
| + * @constructor
|
| + * @extends {cr.ui.ListItem}
|
| */
|
| function OriginListItem(origin) {
|
| var el = cr.doc.createElement('div');
|
| @@ -52,6 +54,10 @@ cr.define('options', function() {
|
| }
|
| };
|
|
|
| + /**
|
| + * @constructor
|
| + * @extends {cr.ui.List}
|
| + */
|
| var OriginList = cr.ui.define('list');
|
|
|
| OriginList.prototype = {
|
|
|