Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(746)

Unified Diff: ui/webui/resources/cr_elements/cr_network_list_item/cr_network_list_item.js

Issue 1100993002: Implement md-settings network lists. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Request network states on expand wifi Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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,

Powered by Google App Engine
This is Rietveld 408576698