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

Unified Diff: chrome/browser/resources/options/chromeos/vpn_providers.js

Issue 1006553002: Add third-party VPN support to network details dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@f_2_460428_add_ash_ui
Patch Set: Addressed comments. Created 5 years, 9 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: chrome/browser/resources/options/chromeos/vpn_providers.js
diff --git a/chrome/browser/resources/options/chromeos/vpn_providers.js b/chrome/browser/resources/options/chromeos/vpn_providers.js
new file mode 100644
index 0000000000000000000000000000000000000000..61ccfb7aea3578b3bdaed0fcbaed4f3ba43fb995
--- /dev/null
+++ b/chrome/browser/resources/options/chromeos/vpn_providers.js
@@ -0,0 +1,84 @@
+// 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 A singleton that keeps track of the VPN providers enabled in
+ * the primary user's profile.
+ */
+
+cr.define('options', function() {
+ /**
+ * @constructor
+ */
+ function VPNProviders() {
+ }
+
+ cr.addSingletonGetter(VPNProviders);
+
+ VPNProviders.prototype = {
+ /**
+ * The VPN providers enabled in the primary user's profile. Each provider
+ * has a name. Third-party VPN providers additionally have an extension ID.
+ * @type {!Array<{name: string, extensionID: ?string>}}
+ * @private
+ */
+ providers_: [],
+
+ /**
+ * Formats a network name for display purposes. If the network belongs to
+ * a third-party VPN provider, the provider name is added to the network
+ * name.
+ * @param {cr.onc.OncData} onc ONC data describing this network.
+ * @return {string} The resulting display name.
+ * @private
+ */
+ formatNetworkName_(onc) {
+ var networkName = onc.getTranslatedValue('Name');
+ if (onc.getActiveValue('VPN.Type') != 'ThirdPartyVPN')
+ return networkName;
+ var extensionID = onc.getActiveValue('VPN.ThirdPartyVPN.ExtensionID');
+ for (var i = 0; i < this.providers_.length; ++i) {
+ if (extensionID == this.providers_[i].extensionID) {
+ return loadTimeData.getStringF('vpnNameTemplate',
+ this.providers_[i].name,
+ networkName);
+ }
+ }
+ return networkName;
+ },
+ };
+
+ /**
+ * Returns the list of VPN providers enabled in the primary user's profile.
+ * @return {!Array<{name: string, extensionID: ?string>}} The list of VPN
+ * providers enabled in the primary user's profile.
+ */
+ VPNProviders.getProviders = function() {
+ return VPNProviders.getInstance().providers_;
+ };
+
+ /**
+ * Replaces the list of VPN providers enabled in the primary user's profile.
+ * @param {!Array<{name: string, extensionID: ?string>}} providers The list
+ * of VPN providers enabled in the primary user's profile.
+ */
+ VPNProviders.setProviders = function(providers) {
+ VPNProviders.getInstance().providers_ = providers;
+ };
+
+ /**
+ * Formats a network name for display purposes. If the network belongs to a
+ * third-party VPN provider, the provider name is added to the network name.
+ * @param {cr.onc.OncData} onc ONC data describing this network.
+ * @return {string} The resulting display name.
+ */
+ VPNProviders.formatNetworkName = function(onc) {
+ return VPNProviders.getInstance().formatNetworkName_(onc);
+ };
+
+ // Export
+ return {
+ VPNProviders: VPNProviders
+ };
+});
« no previous file with comments | « chrome/browser/resources/options/chromeos/network_list.js ('k') | chrome/browser/resources/options/options_bundle.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698