Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(298)

Side by Side Diff: chrome/browser/resources/settings/people_page/lock_screen.html

Issue 2676763002: MD Settings: Put fingerprints on its own subpage. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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-radio-group/paper -radio-group.html"> 5 <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"> 6 <link rel="import" href="../controls/settings_toggle_button.html">
7 <link rel="import" href="fingerprint_list.html"> 7 <link rel="import" href="fingerprint_list.html">
8 <link rel="import" href="lock_screen_constants.html"> 8 <link rel="import" href="lock_screen_constants.html">
9 <link rel="import" href="lock_state_behavior.html"> 9 <link rel="import" href="lock_state_behavior.html">
10 <link rel="import" href="password_prompt_dialog.html"> 10 <link rel="import" href="password_prompt_dialog.html">
(...skipping 30 matching lines...) Expand all
41 41
42 <template is="dom-if" if="[[fingerprintUnlockEnabled_]]"> 42 <template is="dom-if" if="[[fingerprintUnlockEnabled_]]">
43 <div class="settings-box"> 43 <div class="settings-box">
44 <settings-toggle-button class="start" 44 <settings-toggle-button class="start"
45 pref="{{prefs.settings.enable_quick_unlock_fingerprint}}" 45 pref="{{prefs.settings.enable_quick_unlock_fingerprint}}"
46 label="$i18n{lockScreenFingerprintEnable}"> 46 label="$i18n{lockScreenFingerprintEnable}">
47 </settings-toggle-button> 47 </settings-toggle-button>
48 </div> 48 </div>
49 <iron-collapse 49 <iron-collapse
50 opened="[[prefs.settings.enable_quick_unlock_fingerprint.value]]"> 50 opened="[[prefs.settings.enable_quick_unlock_fingerprint.value]]">
51 <div class="settings-box continuation"> 51 <div class="settings-box continuation" on-tap="onEditFingerprints_"
52 <settings-fingerprint-list></settings-fingerprint-list> 52 actionable>
53 <div class="start">
54 $i18n{lockScreenEditFingerprint}
55 <div class="secondary">
56 $i18n{lockScreenEditFingerprintSecondary}
57 </div>
58 </div>
59 <button class="subpage-arrow" is="paper-icon-button-light"></button>
53 </div> 60 </div>
54 </iron-collapse> 61 </iron-collapse>
55 </template> 62 </template>
56 63
57 <div class="settings-box"> 64 <div class="settings-box">
58 <settings-toggle-button class="start" 65 <settings-toggle-button class="start"
59 pref="{{prefs.settings.enable_screen_lock}}" 66 pref="{{prefs.settings.enable_screen_lock}}"
60 label="$i18n{enableScreenlock}"> 67 label="$i18n{enableScreenlock}">
61 </settings-toggle-button> 68 </settings-toggle-button>
62 </div> 69 </div>
63 70
64 <settings-password-prompt-dialog id="passwordPrompt" 71 <settings-password-prompt-dialog id="passwordPrompt"
65 on-close="onPasswordClosed_" set-modes="{{setModes_}}"> 72 on-close="onPasswordClosed_" set-modes="{{setModes_}}">
66 </settings-password-prompt-dialog> 73 </settings-password-prompt-dialog>
67 <settings-setup-pin-dialog id="setupPin" on-done="onPinSetupDone_" 74 <settings-setup-pin-dialog id="setupPin" on-done="onPinSetupDone_"
68 set-modes="[[setModes_]]"> 75 set-modes="[[setModes_]]">
69 </settings-setup-pin-dialog> 76 </settings-setup-pin-dialog>
70 </div> 77 </div>
71 </template> 78 </template>
72 79
73 <script src="lock_screen.js"></script> 80 <script src="lock_screen.js"></script>
74 </dom-module> 81 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698