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

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 + use CrOnc.NetworkConfigType 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..ec22dccc20f22e45b971a7c9eb4c32fdf2509638
--- /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 {}
+ */
+ data: {}
michaelpg 2015/02/10 08:11:25 Again, it's safer to set an object value in the cr
stevenjb 2015/02/11 00:16:12 Done.
+ },
+
+ /**
+ * @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() {
+ var security = this.data.WiFi ? this.data.WiFi.Security : undefined;
+ if (security)
+ return security;
+ return 'None';
+ }
+});

Powered by Google App Engine
This is Rietveld 408576698