| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> |
| 5 <link rel="import" href="chrome://resources/cr_elements/v1_0/network/cr_onc_type
s.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> |
| 6 <link rel="import" href="network_property_list.html"> | 6 <link rel="import" href="network_property_list.html"> |
| 7 <link rel="import" href="network_proxy_input.html"> | 7 <link rel="import" href="network_proxy_input.html"> |
| 8 <link rel="import" href="network_proxy_exclusions.html"> | 8 <link rel="import" href="network_proxy_exclusions.html"> |
| 9 | 9 |
| 10 <dom-module id="network-proxy"> | 10 <dom-module id="network-proxy"> |
| 11 <link rel="import" type="css" href="network_proxy.css"> | 11 <link rel="import" type="css" href="network_proxy.css"> |
| 12 <template> | 12 <template> |
| 13 <div id="outer" class="layout vertical flex"> | 13 <div id="outer" class="layout vertical flex"> |
| 14 <!-- TODO(stevenjb): Use cr-dropdown-menu once available. --> | 14 <!-- TODO(stevenjb): Use cr-dropdown-menu once available. --> |
| 15 <div id="selectDiv"> | 15 <div id="selectDiv"> |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 </paper-input> | 72 </paper-input> |
| 73 <paper-button on-tap="onAddProxyExclusionTap_"> | 73 <paper-button on-tap="onAddProxyExclusionTap_"> |
| 74 Add Exception | 74 Add Exception |
| 75 </paper-button> | 75 </paper-button> |
| 76 </div> | 76 </div> |
| 77 </div> | 77 </div> |
| 78 </div> | 78 </div> |
| 79 </template> | 79 </template> |
| 80 <script src="network_proxy.js"></script> | 80 <script src="network_proxy.js"></script> |
| 81 </dom-module> | 81 </dom-module> |
| OLD | NEW |