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

Unified Diff: chrome/browser/resources/settings/people_page/lock_screen.html

Issue 2698773004: Settings: Hide fingerprint setup from options. (Closed)
Patch Set: Rebased. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/options/chromeos/quick_unlock_configure_overlay.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/people_page/lock_screen.html
diff --git a/chrome/browser/resources/settings/people_page/lock_screen.html b/chrome/browser/resources/settings/people_page/lock_screen.html
index e1e610a63dfc34249ecb561a67978a870668a2e6..6064de35743ba894196a7ab1beff9400ffc053e6 100644
--- a/chrome/browser/resources/settings/people_page/lock_screen.html
+++ b/chrome/browser/resources/settings/people_page/lock_screen.html
@@ -42,7 +42,7 @@
</div>
</div>
- <div class="settings-box">
+ <div id="screenLockDiv" class="settings-box">
<settings-toggle-button class="start"
pref="{{prefs.settings.enable_screen_lock}}"
label="$i18n{enableScreenlock}">
@@ -50,27 +50,29 @@
</div>
<template is="dom-if" if="[[fingerprintUnlockEnabled_]]">
- <div class="settings-box">
- <settings-toggle-button class="start"
- pref="{{prefs.settings.enable_quick_unlock_fingerprint}}"
- label="$i18n{lockScreenFingerprintEnable}">
- </settings-toggle-button>
- </div>
- <iron-collapse
- opened="[[prefs.settings.enable_quick_unlock_fingerprint.value]]">
- <div class="settings-box continuation" on-tap="onEditFingerprints_"
- actionable>
- <div class="start">
- $i18n{lockScreenEditFingerprints}
- <div class="secondary" id="lockScreenEditFingerprintsSecondary">
- [[getDescriptionText_(numFingerprints_)]]
+ <div id="fingerprintDiv">
+ <div class="settings-box">
+ <settings-toggle-button class="start"
+ pref="{{prefs.settings.enable_quick_unlock_fingerprint}}"
+ label="$i18n{lockScreenFingerprintEnable}">
+ </settings-toggle-button>
+ </div>
+ <iron-collapse
+ opened="[[prefs.settings.enable_quick_unlock_fingerprint.value]]">
+ <div class="settings-box continuation" on-tap="onEditFingerprints_"
+ actionable>
+ <div class="start">
+ $i18n{lockScreenEditFingerprints}
+ <div class="secondary" id="lockScreenEditFingerprintsSecondary">
+ [[getDescriptionText_(numFingerprints_)]]
+ </div>
</div>
+ <button class="subpage-arrow" is="paper-icon-button-light"
+ aria-label="$i18n{lockScreenEditFingerprints}"
+ aria-describedby="lockScreenEditFingerprintsSecondary"></button>
</div>
- <button class="subpage-arrow" is="paper-icon-button-light"
- aria-label="$i18n{lockScreenEditFingerprints}"
- aria-describedby="lockScreenEditFingerprintsSecondary"></button>
- </div>
- </iron-collapse>
+ </iron-collapse>
+ </div>
</template>
<settings-password-prompt-dialog id="passwordPrompt"
« no previous file with comments | « chrome/browser/resources/options/chromeos/quick_unlock_configure_overlay.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698