| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dial
og.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dial
og.html"> |
| 4 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_button/cr_button
.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_button/cr_button
.html"> |
| 5 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_checkbox/cr_chec
kbox.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_checkbox/cr_chec
kbox.html"> |
| 6 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_input/cr_input.h
tml"> | 6 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_input/cr_input.h
tml"> |
| 7 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_onc/cr_onc_types
.html"> | 7 <link rel="import" href="chrome://resources/cr_elements/v1_0/network/cr_onc_type
s.html"> |
| 8 <link rel="import" href="network_property_list.html"> | 8 <link rel="import" href="network_property_list.html"> |
| 9 | 9 |
| 10 <dom-module id="network-siminfo"> | 10 <dom-module id="network-siminfo"> |
| 11 <link rel="import" type="css" href="network_siminfo.css"> | 11 <link rel="import" type="css" href="network_siminfo.css"> |
| 12 <template> | 12 <template> |
| 13 <div id="outerDiv" class="layout vertical"> | 13 <div id="outerDiv" class="layout vertical"> |
| 14 <div class="layout horizontal center" | 14 <div class="layout horizontal center" |
| 15 hidden$="[[state.Cellular.SIMPresent]]"> | 15 hidden$="[[state.Cellular.SIMPresent]]"> |
| 16 <!-- SIM missing UI --> | 16 <!-- SIM missing UI --> |
| 17 <iron-icon icon="sim-card-alert"></iron-icon> | 17 <iron-icon icon="sim-card-alert"></iron-icon> |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 >[[getErrorMsg_(error)]] | 149 >[[getErrorMsg_(error)]] |
| 150 </span> | 150 </span> |
| 151 <span>[[getRetriesLeftMsg_(networkState)]]</span> | 151 <span>[[getRetriesLeftMsg_(networkState)]]</span> |
| 152 </div> | 152 </div> |
| 153 </div> | 153 </div> |
| 154 </paper-dialog> | 154 </paper-dialog> |
| 155 | 155 |
| 156 </template> | 156 </template> |
| 157 <script src="network_siminfo.js"></script> | 157 <script src="network_siminfo.js"></script> |
| 158 </dom-module> | 158 </dom-module> |
| OLD | NEW |