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

Unified Diff: ui/webui/resources/cr_elements/network/cr_network_list_types.js

Issue 2069323002: Add support for custom entries in <cr_network_select/>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@604119--Implement-Chrome-OS-out-of-box-flow-in-Material-Design--ImplementNetworkSelectionScreen
Patch Set: Fix compile. Created 4 years, 6 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/network/cr_network_list_types.js
diff --git a/ui/webui/resources/cr_elements/network/cr_network_list_types.js b/ui/webui/resources/cr_elements/network/cr_network_list_types.js
new file mode 100644
index 0000000000000000000000000000000000000000..b0c21fba76da1838ae9ec540d155f62c99bf129d
--- /dev/null
+++ b/ui/webui/resources/cr_elements/network/cr_network_list_types.js
@@ -0,0 +1,22 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+/**
+ * @fileoverview
+ *
+ * This file contains typedefs <cr-network-list/> properties.
+ */
+
+var CrNetworkList = {};
+
+/**
+ * Generic managed property type. This should match any of the basic managed
+ * types in chrome.networkingPrivate, e.g. networkingPrivate.ManagedBoolean.
+ * @typedef {{
+ * customItemName: (!String|undefined),
+ * polymerIcon: (!String|undefined),
+ * customData: (!Object|undefined),
+ * }}
+ */
+CrNetworkList.CustomItemState;

Powered by Google App Engine
This is Rietveld 408576698