| 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/cr_elements/cr_dialog/cr_dialog.html
"> | 2 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 3 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> | 3 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 5 <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-button/paper-butt
on.html"> |
| 6 <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-checkbox/paper-ch
eckbox.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> |
| 8 <link rel="import" href="/icons.html"> | 8 <link rel="import" href="/icons.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 | 11 |
| 12 <dom-module id="network-siminfo"> | 12 <dom-module id="network-siminfo"> |
| 13 <template> | 13 <template> |
| 14 <style include="internet-shared"> | 14 <style include="internet-shared"> |
| 15 iron-icon { | 15 iron-icon { |
| 16 -webkit-margin-end: 10px; | 16 -webkit-margin-end: 10px; |
| 17 } | 17 } |
| 18 .error { | 18 .error { |
| 19 color: red; | 19 color: red; |
| 20 font-weight: 500; | 20 font-weight: 500; |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 [[getErrorMsg_(error, networkProperties)]] | 143 [[getErrorMsg_(error, networkProperties)]] |
| 144 </div> | 144 </div> |
| 145 </div> | 145 </div> |
| 146 <div class="button-container"> | 146 <div class="button-container"> |
| 147 <paper-button on-tap="sendUnlockPuk_">Unlock</paper-button> | 147 <paper-button on-tap="sendUnlockPuk_">Unlock</paper-button> |
| 148 </div> | 148 </div> |
| 149 </dialog> | 149 </dialog> |
| 150 </template> | 150 </template> |
| 151 <script src="network_siminfo.js"></script> | 151 <script src="network_siminfo.js"></script> |
| 152 </dom-module> | 152 </dom-module> |
| OLD | NEW |