| 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/html/action_link.html"> | 2 <link rel="import" href="chrome://resources/html/action_link.html"> |
| 3 <link rel="import" href="chrome://resources/html/action_link_css.html"> | 3 <link rel="import" href="chrome://resources/html/action_link_css.html"> |
| 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper
-radio-group.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper
-radio-group.html"> |
| 6 <link rel="import" href="../controls/settings_toggle_button.html"> | 7 <link rel="import" href="../controls/settings_toggle_button.html"> |
| 7 <link rel="import" href="fingerprint_list.html"> | 8 <link rel="import" href="fingerprint_list.html"> |
| 8 <link rel="import" href="lock_screen_constants.html"> | 9 <link rel="import" href="lock_screen_constants.html"> |
| 9 <link rel="import" href="lock_state_behavior.html"> | 10 <link rel="import" href="lock_state_behavior.html"> |
| 10 <link rel="import" href="password_prompt_dialog.html"> | 11 <link rel="import" href="password_prompt_dialog.html"> |
| 11 <link rel="import" href="setup_pin_dialog.html"> | 12 <link rel="import" href="setup_pin_dialog.html"> |
| 12 <link rel="import" href="../prefs/prefs_behavior.html"> | 13 <link rel="import" href="../prefs/prefs_behavior.html"> |
| 13 <link rel="import" href="../route.html"> | 14 <link rel="import" href="../route.html"> |
| 14 <link rel="import" href="../settings_shared_css.html"> | 15 <link rel="import" href="../settings_shared_css.html"> |
| (...skipping 26 matching lines...) Expand all Loading... |
| 41 | 42 |
| 42 <template is="dom-if" if="[[fingerprintUnlockEnabled_]]"> | 43 <template is="dom-if" if="[[fingerprintUnlockEnabled_]]"> |
| 43 <div class="settings-box"> | 44 <div class="settings-box"> |
| 44 <settings-toggle-button class="start" | 45 <settings-toggle-button class="start" |
| 45 pref="{{prefs.settings.enable_quick_unlock_fingerprint}}" | 46 pref="{{prefs.settings.enable_quick_unlock_fingerprint}}" |
| 46 label="$i18n{lockScreenFingerprintEnable}"> | 47 label="$i18n{lockScreenFingerprintEnable}"> |
| 47 </settings-toggle-button> | 48 </settings-toggle-button> |
| 48 </div> | 49 </div> |
| 49 <iron-collapse | 50 <iron-collapse |
| 50 opened="[[prefs.settings.enable_quick_unlock_fingerprint.value]]"> | 51 opened="[[prefs.settings.enable_quick_unlock_fingerprint.value]]"> |
| 51 <div class="settings-box continuation"> | 52 <div class="settings-box continuation" on-tap="onEditFingerprints_" |
| 52 <settings-fingerprint-list></settings-fingerprint-list> | 53 actionable> |
| 54 <div class="start"> |
| 55 $i18n{lockScreenEditFingerprints} |
| 56 <div class="secondary"> |
| 57 $i18n{lockScreenEditFingerprintsDescription} |
| 58 </div> |
| 59 </div> |
| 60 <button class="subpage-arrow" is="paper-icon-button-light"></button> |
| 53 </div> | 61 </div> |
| 54 </iron-collapse> | 62 </iron-collapse> |
| 55 </template> | 63 </template> |
| 56 | 64 |
| 57 <div class="settings-box"> | 65 <div class="settings-box"> |
| 58 <settings-toggle-button class="start" | 66 <settings-toggle-button class="start" |
| 59 pref="{{prefs.settings.enable_screen_lock}}" | 67 pref="{{prefs.settings.enable_screen_lock}}" |
| 60 label="$i18n{enableScreenlock}"> | 68 label="$i18n{enableScreenlock}"> |
| 61 </settings-toggle-button> | 69 </settings-toggle-button> |
| 62 </div> | 70 </div> |
| 63 | 71 |
| 64 <settings-password-prompt-dialog id="passwordPrompt" | 72 <settings-password-prompt-dialog id="passwordPrompt" |
| 65 on-close="onPasswordClosed_" set-modes="{{setModes_}}"> | 73 on-close="onPasswordClosed_" set-modes="{{setModes_}}"> |
| 66 </settings-password-prompt-dialog> | 74 </settings-password-prompt-dialog> |
| 67 <settings-setup-pin-dialog id="setupPin" on-done="onPinSetupDone_" | 75 <settings-setup-pin-dialog id="setupPin" on-done="onPinSetupDone_" |
| 68 set-modes="[[setModes_]]"> | 76 set-modes="[[setModes_]]"> |
| 69 </settings-setup-pin-dialog> | 77 </settings-setup-pin-dialog> |
| 70 </div> | 78 </div> |
| 71 </template> | 79 </template> |
| 72 | 80 |
| 73 <script src="lock_screen.js"></script> | 81 <script src="lock_screen.js"></script> |
| 74 </dom-module> | 82 </dom-module> |
| OLD | NEW |