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

Unified Diff: ui/webui/resources/cr_elements/cr_onc/cr_onc_data.js

Issue 874283006: Add custom Polymer network icon element (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge fix Created 5 years, 10 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_onc/cr_onc_data.js
diff --git a/ui/webui/resources/cr_elements/cr_onc/cr_onc_data.js b/ui/webui/resources/cr_elements/cr_onc/cr_onc_data.js
new file mode 100644
index 0000000000000000000000000000000000000000..4bca1d248b62abf898e2c237b8b1237cd4a04c36
--- /dev/null
+++ b/ui/webui/resources/cr_elements/cr_onc/cr_onc_data.js
@@ -0,0 +1,52 @@
+// Copyright 2015 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 ONC network configuration support class. Wraps a dictionary
+ * object containing ONC managed or unmanaged dictionaries. Also provides
+ * special accessors for ONC properties. See cr-onc-types for ONC types,
+ * e.g. CrOnc.NetworkConfigType. Used by consumers of the
+ * chrome.networkingPrivate API. See components/onc/docs/onc_spec.html.
+ */
+Polymer('cr-onc-data', {
+ publish: {
+ /**
+ * ONC configuration property dictionary, e.g. the result of a
+ * chrome.networkingPrivate.getProperties() call.
+ *
+ * @attribute data
+ * @type CrOnc.NetworkConfigType
+ * @default null
+ */
+ data: null,
+ },
+
+ created: function() {
+ this.data = /** @type {CrOnc.NetworkConfigType} */({});
+ },
+
+ /**
+ * @return {number} The signal strength of the network.
+ */
+ getStrength: function() {
+ var type = this.data.Type;
+ var strength = 0;
+ if (type == 'WiFi')
+ strength = this.data.WiFi ? this.data.WiFi.SignalStrength : 0;
+ else if (type == 'Cellular')
+ strength = this.data.Cellular ? this.data.Cellular.SignalStrength : 0;
+ else if (type == 'WiMAX')
+ strength = this.data.WiMAX ? this.data.WiMAX.SignalStrength : 0;
+ return strength;
+ },
+
+ /**
+ * Returns the WiFi security type. Undefined or empty defaults to 'None'.
+ * @return {string} The WiFi security type.
+ */
+ getWiFiSecurity: function() {
+ return (this.data.WiFi && this.data.WiFi.Security) ?
+ this.data.WiFi.Security : 'None';
+ }
+});
« no previous file with comments | « ui/webui/resources/cr_elements/cr_onc/cr_onc_data.html ('k') | ui/webui/resources/cr_elements/cr_onc/cr_onc_data_externs.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698