| 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"> |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 <div class="layout vertical indented"> | 266 <div class="layout vertical indented"> |
| 267 <!-- APN --> | 267 <!-- APN --> |
| 268 <template is="dom-if" | 268 <template is="dom-if" |
| 269 if="[[isType_(NetworkType_.CELLULAR, networkProperties)]]"> | 269 if="[[isType_(NetworkType_.CELLULAR, networkProperties)]]"> |
| 270 <network-apnlist editable on-apn-change="onNetworkPropertyChange_" | 270 <network-apnlist editable on-apn-change="onNetworkPropertyChange_" |
| 271 network-properties="[[networkProperties]]"> | 271 network-properties="[[networkProperties]]"> |
| 272 </network-apnlist> | 272 </network-apnlist> |
| 273 </template> | 273 </template> |
| 274 | 274 |
| 275 <!-- IP Config, Nameservers --> | 275 <!-- IP Config, Nameservers --> |
| 276 <template is="dom-if" if="[[showIpConfig_(networkProperties)]]"> | 276 <template is="dom-if" |
| 277 if="[[isRememberedOrConnected_(networkProperties)]]"> |
| 277 <network-ip-config editable on-ip-change="onIPConfigChange_" | 278 <network-ip-config editable on-ip-change="onIPConfigChange_" |
| 278 network-properties="[[networkProperties]]"> | 279 network-properties="[[networkProperties]]"> |
| 279 </network-ip-config> | 280 </network-ip-config> |
| 280 <network-nameservers editable | 281 <network-nameservers editable |
| 281 on-nameservers-change="onIPConfigChange_" | 282 on-nameservers-change="onIPConfigChange_" |
| 282 network-properties="[[networkProperties]]"> | 283 network-properties="[[networkProperties]]"> |
| 283 </network-nameservers> | 284 </network-nameservers> |
| 284 </template> | 285 </template> |
| 285 </div> | 286 </div> |
| 286 </iron-collapse> | 287 </iron-collapse> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 303 </template> | 304 </template> |
| 304 | 305 |
| 305 <tether-connection-dialog id="tetherDialog" | 306 <tether-connection-dialog id="tetherDialog" |
| 306 network-properties="[[networkProperties]]" | 307 network-properties="[[networkProperties]]" |
| 307 on-tether-connect="onTetherConnect_" | 308 on-tether-connect="onTetherConnect_" |
| 308 on-close="onTetherDialogClose_"> | 309 on-close="onTetherDialogClose_"> |
| 309 </tether-connection-dialog> | 310 </tether-connection-dialog> |
| 310 </template> | 311 </template> |
| 311 <script src="internet_detail_page.js"></script> | 312 <script src="internet_detail_page.js"></script> |
| 312 </dom-module> | 313 </dom-module> |
| OLD | NEW |