| 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-styles/paper-styl
es.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/paper-styl
es.html"> |
| 3 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_checkbox/cr_chec
kbox.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_checkbox/cr_chec
kbox.html"> |
| 4 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_input/cr_input.h
tml"> | 4 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_input/cr_input.h
tml"> |
| 5 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_onc/cr_onc_types
.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/v1_0/network/cr_onc_type
s.html"> |
| 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> | 15 <div> |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 </cr-input> | 72 </cr-input> |
| 73 <cr-button on-click="onAddProxyExclusion_"> | 73 <cr-button on-click="onAddProxyExclusion_"> |
| 74 Add Exception | 74 Add Exception |
| 75 </cr-button> | 75 </cr-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 |