| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.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-button/paper-butt
on.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-checkbox/paper-ch
eckbox.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
-container.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
-container.html"> |
| 6 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> | 7 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> |
| 7 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_behavior.html"> | 8 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_behavior.html"> |
| 8 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_indicator.html"> | 9 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_indicator.html"> |
| 9 <link rel="import" href="internet_shared_css.html"> | 10 <link rel="import" href="internet_shared_css.html"> |
| 10 <link rel="import" href="network_property_list.html"> | 11 <link rel="import" href="network_property_list.html"> |
| 11 <link rel="import" href="network_proxy_input.html"> | 12 <link rel="import" href="network_proxy_input.html"> |
| 12 <link rel="import" href="network_proxy_exclusions.html"> | 13 <link rel="import" href="network_proxy_exclusions.html"> |
| 13 | 14 |
| 14 <dom-module id="network-proxy"> | 15 <dom-module id="network-proxy"> |
| 15 <template> | 16 <template> |
| 16 <style include="internet-shared"> | 17 <style include="iron-flex internet-shared"> |
| 17 cr-policy-network-indicator { | 18 cr-policy-network-indicator { |
| 18 -webkit-margin-end: 10px; | 19 -webkit-margin-end: 10px; |
| 19 } | 20 } |
| 20 | 21 |
| 21 network-proxy-input { | 22 network-proxy-input { |
| 22 margin-bottom: 10px; | 23 margin-bottom: 10px; |
| 23 } | 24 } |
| 24 | 25 |
| 25 #proxyDiv paper-checkbox { | 26 #proxyDiv paper-checkbox { |
| 26 padding: 10px 0; | 27 padding: 10px 0; |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 </paper-input-container> | 128 </paper-input-container> |
| 128 <paper-button on-tap="onAddProxyExclusionTap_"> | 129 <paper-button on-tap="onAddProxyExclusionTap_"> |
| 129 Add Exception | 130 Add Exception |
| 130 </paper-button> | 131 </paper-button> |
| 131 </div> | 132 </div> |
| 132 </div> | 133 </div> |
| 133 </div> | 134 </div> |
| 134 </template> | 135 </template> |
| 135 <script src="network_proxy.js"></script> | 136 <script src="network_proxy.js"></script> |
| 136 </dom-module> | 137 </dom-module> |
| OLD | NEW |