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

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: Rebase 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..fd759737d90ec6fc80c419900a724070a2a123e2
--- /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
michaelpg 2015/02/24 07:24:57 nit: trailing comma
stevenjb 2015/02/24 19:28:00 Done.
+ },
+
+ 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';
michaelpg 2015/02/24 07:24:57 4 spaces or align with the (
stevenjb 2015/02/24 19:28:00 Done.
+ }
+});

Powered by Google App Engine
This is Rietveld 408576698