| Index: ui/webui/resources/cr_elements/cr_network_list_item/cr_network_list_item.js
|
| diff --git a/ui/webui/resources/cr_elements/cr_network_list_item/cr_network_list_item.js b/ui/webui/resources/cr_elements/cr_network_list_item/cr_network_list_item.js
|
| index 39786b7f055ae6faa6a80268eb5cc385f00a0836..3843f6e286a10c39357aa7d71e1808d192872b3a 100644
|
| --- a/ui/webui/resources/cr_elements/cr_network_list_item/cr_network_list_item.js
|
| +++ b/ui/webui/resources/cr_elements/cr_network_list_item/cr_network_list_item.js
|
| @@ -14,7 +14,7 @@
|
| * Performs argument substitution, replacing %1, %2, etc in 'text' with
|
| * corresponding entries in |args|.
|
| * @param {string} text The string to perform the substitution on.
|
| - * @param {Array<string>} args The arguments to replace %1, %2, etc with.
|
| + * @param {?Array<string>} args The arguments to replace %1, %2, etc with.
|
| */
|
| function getText(text, args) {
|
| var res = text;
|
| @@ -52,7 +52,7 @@ Polymer('cr-network-list-item', {
|
| * The ONC data properties used to display the list item.
|
| *
|
| * @attribute networkState
|
| - * @type CrOncDataElement
|
| + * @type {?CrOncDataElement}
|
| * @default null
|
| */
|
| networkState: null,
|
| @@ -64,7 +64,7 @@ Polymer('cr-network-list-item', {
|
| * of the network type plus the network name and connection state.
|
| *
|
| * @attribute isListItem
|
| - * @type boolean
|
| + * @type {boolean}
|
| * @default false
|
| */
|
| isListItem: false,
|
|
|