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_page/internet_shared_css.html"> |
10 <link rel="import" href="network_property_list.html"> | 10 <link rel="import" href="/internet_page/network_property_list.html"> |
11 <link rel="import" href="network_proxy_input.html"> | 11 <link rel="import" href="/internet_page/network_proxy_input.html"> |
12 <link rel="import" href="network_proxy_exclusions.html"> | 12 <link rel="import" href="/internet_page/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 { | 21 network-proxy-input { |
22 margin-bottom: 10px; | 22 margin-bottom: 10px; |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 </paper-input-container> | 127 </paper-input-container> |
128 <paper-button on-tap="onAddProxyExclusionTap_"> | 128 <paper-button on-tap="onAddProxyExclusionTap_"> |
129 Add Exception | 129 Add Exception |
130 </paper-button> | 130 </paper-button> |
131 </div> | 131 </div> |
132 </div> | 132 </div> |
133 </div> | 133 </div> |
134 </template> | 134 </template> |
135 <script src="network_proxy.js"></script> | 135 <script src="network_proxy.js"></script> |
136 </dom-module> | 136 </dom-module> |
OLD | NEW |