| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 | 2 |
| 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 4 <link rel="import" href="chrome://resources/html/assert.html"> | 4 <link rel="import" href="chrome://resources/html/assert.html"> |
| 5 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> | 5 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> |
| 6 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 6 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm
l"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm
l"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 </iron-list> | 64 </iron-list> |
| 65 <div class="continuation"> | 65 <div class="continuation"> |
| 66 <paper-button id="addFingerprint" class="add-link action-button" | 66 <paper-button id="addFingerprint" class="add-link action-button" |
| 67 on-tap="openAddFingerprintDialog_"> | 67 on-tap="openAddFingerprintDialog_"> |
| 68 $i18n{lockScreenAddFingerprint} | 68 $i18n{lockScreenAddFingerprint} |
| 69 </paper-button> | 69 </paper-button> |
| 70 </div> | 70 </div> |
| 71 </div> | 71 </div> |
| 72 <i class="settings-box continuation">$i18n{lockScreenFingerprintWarning}</i> | 72 <i class="settings-box continuation">$i18n{lockScreenFingerprintWarning}</i> |
| 73 | 73 |
| 74 <settings-setup-fingerprint-dialog id="setupFingerprint" | 74 <template is="dom-if" if="[[showSetupFingerprintDialog_]]" restamp> |
| 75 on-add-fingerprint="updateFingerprintsList_" | 75 <settings-setup-fingerprint-dialog |
| 76 on-close="onSetupFingerprintDialogClose_"> | 76 on-add-fingerprint="updateFingerprintsList_" |
| 77 </settings-setup-fingerprint-dialog> | 77 on-close="onSetupFingerprintDialogClose_"> |
| 78 </settings-setup-fingerprint-dialog> |
| 79 </template> |
| 78 </template> | 80 </template> |
| 79 <script src="fingerprint_list.js"></script> | 81 <script src="fingerprint_list.js"></script> |
| 80 </dom-module> | 82 </dom-module> |
| OLD | NEW |