| 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/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/polymer/v1_0/paper-input/paper-input
-container.html"> | 5 <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"> | 6 <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"> | 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
_indicator.html"> | 8 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_indicator.html"> |
| 9 <link rel="import" href="internet_shared_css.html"> | 9 <link rel="import" href="internet_shared_css.html"> |
| 10 <link rel="import" href="network_property_list.html"> | 10 <link rel="import" href="network_property_list.html"> |
| 11 <link rel="import" href="network_proxy_input.html"> | 11 <link rel="import" href="network_proxy_input.html"> |
| 12 <link rel="import" href="network_proxy_exclusions.html"> | 12 <link rel="import" href="network_proxy_exclusions.html"> |
| 13 | 13 |
| 14 <dom-module id="network-proxy"> | 14 <dom-module id="network-proxy"> |
| 15 <template> | 15 <template> |
| 16 <style include="internet-shared"> | 16 <style include="internet-shared"> |
| 17 cr-policy-network-indicator { | 17 cr-policy-network-indicator { |
| 18 -webkit-margin-end: 10px; | 18 -webkit-margin-end: 10px; |
| 19 } | 19 } |
| 20 | 20 |
| 21 network-proxy-input { |
| 22 margin-bottom: 10px; |
| 23 } |
| 24 |
| 21 #proxyDiv paper-checkbox { | 25 #proxyDiv paper-checkbox { |
| 22 padding: 10px 0; | 26 padding: 10px 0; |
| 23 } | 27 } |
| 24 | 28 |
| 25 #exceptionsDiv { | 29 #exceptionsDiv { |
| 26 padding: 10px 0; | 30 padding: 10px 0; |
| 27 } | 31 } |
| 28 | 32 |
| 29 #exceptionsDiv network-proxy-exclusions { | 33 #exceptionsDiv network-proxy-exclusions { |
| 30 margin: 10px 0; | 34 margin: 10px 0; |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 </paper-input-container> | 127 </paper-input-container> |
| 124 <paper-button on-tap="onAddProxyExclusionTap_"> | 128 <paper-button on-tap="onAddProxyExclusionTap_"> |
| 125 Add Exception | 129 Add Exception |
| 126 </paper-button> | 130 </paper-button> |
| 127 </div> | 131 </div> |
| 128 </div> | 132 </div> |
| 129 </div> | 133 </div> |
| 130 </template> | 134 </template> |
| 131 <script src="network_proxy.js"></script> | 135 <script src="network_proxy.js"></script> |
| 132 </dom-module> | 136 </dom-module> |
| OLD | NEW |