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-collapse/iron-coll
apse.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> |
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch
eckbox.html"> |
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
7 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> | 7 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> |
8 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 8 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
9 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_icon.
html"> | 9 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_icon.
html"> |
10 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> | 10 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 <paper-checkbox checked="{{autoConnect}}"> | 118 <paper-checkbox checked="{{autoConnect}}"> |
119 Automatically connect to this network | 119 Automatically connect to this network |
120 </paper-checkbox> | 120 </paper-checkbox> |
121 <cr-policy-network-indicator | 121 <cr-policy-network-indicator |
122 property="[[getManagedAutoConnect_(networkProperties)]]"> | 122 property="[[getManagedAutoConnect_(networkProperties)]]"> |
123 </cr-policy-network-indicator> | 123 </cr-policy-network-indicator> |
124 </div> | 124 </div> |
125 </div> | 125 </div> |
126 | 126 |
127 <!-- SIM Info (Cellular only). --> | 127 <!-- SIM Info (Cellular only). --> |
128 <div class="settings-box self-stretch" | 128 <network-siminfo |
129 hidden$="[[!showCellularSim_(networkProperties)]]"> | 129 editable on-siminfo-change="onNetworkPropertyChange_" |
130 <network-siminfo editable network-properties="[[networkProperties]]" | 130 hidden$="[[!showCellularSim_(networkProperties)]]" |
131 on-siminfo-change="onNetworkPropertyChange_" | 131 network-properties="[[networkProperties]]" |
132 networking-private="[[networkingPrivate]]"> | 132 networking-private="[[networkingPrivate]]"> |
133 </network-siminfo> | 133 </network-siminfo> |
134 </div> | |
135 | 134 |
136 <!-- IP Address. --> | 135 <!-- IP Address. --> |
137 <div class="settings-box two-line single-column" hidden$="[[!IPAddress]]"> | 136 <div class="settings-box two-line single-column" hidden$="[[!IPAddress]]"> |
138 <div>IP Address</div> | 137 <div>IP Address</div> |
139 <div class="secondary">[[IPAddress]]</div> | 138 <div class="secondary">[[IPAddress]]</div> |
140 </div> | 139 </div> |
141 | 140 |
142 <!-- Properties to always show if present. --> | 141 <!-- Properties to always show if present. --> |
143 <network-property-list hidden$="[[!hasInfoFields_(networkProperties)]]" | 142 <network-property-list hidden$="[[!hasInfoFields_(networkProperties)]]" |
144 fields="[[getInfoFields_(networkProperties)]]" | 143 fields="[[getInfoFields_(networkProperties)]]" |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 <!-- Proxy --> | 194 <!-- Proxy --> |
196 <div class="subtitle">Proxy</div> | 195 <div class="subtitle">Proxy</div> |
197 <network-proxy editable on-proxy-change="onProxyChange_" | 196 <network-proxy editable on-proxy-change="onProxyChange_" |
198 network-properties="[[networkProperties]]"> | 197 network-properties="[[networkProperties]]"> |
199 </network-proxy> | 198 </network-proxy> |
200 </div> | 199 </div> |
201 </iron-collapse> | 200 </iron-collapse> |
202 </template> | 201 </template> |
203 <script src="internet_detail_page.js"></script> | 202 <script src="internet_detail_page.js"></script> |
204 </dom-module> | 203 </dom-module> |
OLD | NEW |