OLD | NEW |
1 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> |
2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
3 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_icon.
html"> | 3 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_icon.
html"> |
4 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> | 4 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> |
5 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_indicat
or.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_indicat
or.html"> |
6 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_behavior.html"> | 6 <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
_indicator.html"> | 7 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_indicator.html"> |
8 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 8 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
9 <link rel="import" href="chrome://resources/html/polymer.html"> | 9 <link rel="import" href="chrome://resources/html/polymer.html"> |
10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
11 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> | 11 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> |
12 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 12 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
13 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 13 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
14 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> | 14 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap
er-toggle-button.html"> |
15 <link rel="import" href="../controls/settings_toggle_button.html"> | 15 <link rel="import" href="../controls/settings_toggle_button.html"> |
16 <link rel="import" href="../prefs/prefs.html"> | 16 <link rel="import" href="../prefs/prefs.html"> |
17 <link rel="import" href="../route.html"> | 17 <link rel="import" href="../route.html"> |
18 <link rel="import" href="internet_shared_css.html"> | 18 <link rel="import" href="internet_shared_css.html"> |
19 <link rel="import" href="network_apnlist.html"> | 19 <link rel="import" href="network_apnlist.html"> |
20 <link rel="import" href="network_ip_config.html"> | 20 <link rel="import" href="network_ip_config.html"> |
21 <link rel="import" href="network_nameservers.html"> | 21 <link rel="import" href="network_nameservers.html"> |
22 <link rel="import" href="network_property_list.html"> | 22 <link rel="import" href="network_property_list.html"> |
23 <link rel="import" href="network_proxy.html"> | 23 <link rel="import" href="network_proxy.html"> |
24 <link rel="import" href="network_siminfo.html"> | 24 <link rel="import" href="network_siminfo.html"> |
25 | 25 |
26 <dom-module id="settings-internet-detail-page"> | 26 <dom-module id="settings-internet-detail-page"> |
27 <template> | 27 <template> |
28 <style include="internet-shared"> | 28 <style include="internet-shared iron-flex"> |
29 :host { | 29 :host { |
30 padding-bottom: 40px; | 30 padding-bottom: 40px; |
31 } | 31 } |
32 | 32 |
33 cr-network-icon { | 33 cr-network-icon { |
34 -webkit-padding-end: 8px; | 34 -webkit-padding-end: 8px; |
35 } | 35 } |
36 | 36 |
37 iron-collapse { | 37 iron-collapse { |
38 margin: 10px 0; | 38 margin: 10px 0; |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 <network-proxy editable prefs="{{prefs}}" | 296 <network-proxy editable prefs="{{prefs}}" |
297 on-proxy-change="onProxyChange_" | 297 on-proxy-change="onProxyChange_" |
298 network-properties="[[networkProperties]]"> | 298 network-properties="[[networkProperties]]"> |
299 </network-proxy> | 299 </network-proxy> |
300 </iron-collapse> | 300 </iron-collapse> |
301 </template> | 301 </template> |
302 </template> | 302 </template> |
303 </template> | 303 </template> |
304 <script src="internet_detail_page.js"></script> | 304 <script src="internet_detail_page.js"></script> |
305 </dom-module> | 305 </dom-module> |
OLD | NEW |