Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / browser / resources / settings / internet_page / network_proxy_exclusions.js
blob37c8cefd38b8530533f0a12caedd88ec830be46d
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 /**
6  * @fileoverview Polymer element for displaying a list of proxy exclusions.
7  * Includes UI for adding, changing, and removing entries.
8  */
10 (function() {
12 Polymer({
13   is: 'network-proxy-exclusions',
15   properties: {
16     /**
17      * The list of exclusions.
18      * @type {!Array<string>}
19      */
20     exclusions: {
21       type: Array,
22       value: function() { return []; },
23       notify: true
24     }
25   },
27   /**
28    * Event triggered when an item is removed.
29    * @private
30    */
31   removeItem_: function(event) {
32     var index = event.model.index;
33     this.splice('exclusions', index, 1);
34     this.fire('proxy-change');
35   }
36 });
37 })();