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

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

Issue 2689053002: MD Settings: label and describe a bunch of subpage/open-in-new buttons (Closed)
Patch Set: downloadSize -> downloadsSize 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-icon-button/paper -icon-button-light.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
6 <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">
7 <link rel="import" href="../controls/settings_toggle_button.html"> 7 <link rel="import" href="../controls/settings_toggle_button.html">
8 <link rel="import" href="../i18n_setup.html"> 8 <link rel="import" href="../i18n_setup.html">
9 <link rel="import" href="fingerprint_list.html"> 9 <link rel="import" href="fingerprint_list.html">
10 <link rel="import" href="lock_screen_constants.html"> 10 <link rel="import" href="lock_screen_constants.html">
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 pref="{{prefs.settings.enable_quick_unlock_fingerprint}}" 48 pref="{{prefs.settings.enable_quick_unlock_fingerprint}}"
49 label="$i18n{lockScreenFingerprintEnable}"> 49 label="$i18n{lockScreenFingerprintEnable}">
50 </settings-toggle-button> 50 </settings-toggle-button>
51 </div> 51 </div>
52 <iron-collapse 52 <iron-collapse
53 opened="[[prefs.settings.enable_quick_unlock_fingerprint.value]]"> 53 opened="[[prefs.settings.enable_quick_unlock_fingerprint.value]]">
54 <div class="settings-box continuation" on-tap="onEditFingerprints_" 54 <div class="settings-box continuation" on-tap="onEditFingerprints_"
55 actionable> 55 actionable>
56 <div class="start"> 56 <div class="start">
57 $i18n{lockScreenEditFingerprints} 57 $i18n{lockScreenEditFingerprints}
58 <div class="secondary"> 58 <div class="secondary" id="lockScreenEditFingerprintsSecondary">
59 $i18n{lockScreenEditFingerprintsDescription} 59 $i18n{lockScreenEditFingerprintsDescription}
60 </div> 60 </div>
61 </div> 61 </div>
62 <button class="subpage-arrow" is="paper-icon-button-light"></button> 62 <button class="subpage-arrow" is="paper-icon-button-light"
63 aria-label="$i18n{lockScreenEditFingerprints}"
64 aria-describedby="lockScreenEditFingerprintsSecondary"></button>
63 </div> 65 </div>
64 </iron-collapse> 66 </iron-collapse>
65 </template> 67 </template>
66 68
67 <div class="settings-box"> 69 <div class="settings-box">
68 <settings-toggle-button class="start" 70 <settings-toggle-button class="start"
69 pref="{{prefs.settings.enable_screen_lock}}" 71 pref="{{prefs.settings.enable_screen_lock}}"
70 label="$i18n{enableScreenlock}"> 72 label="$i18n{enableScreenlock}">
71 </settings-toggle-button> 73 </settings-toggle-button>
72 </div> 74 </div>
73 75
74 <settings-password-prompt-dialog id="passwordPrompt" 76 <settings-password-prompt-dialog id="passwordPrompt"
75 on-close="onPasswordClosed_" set-modes="{{setModes_}}"> 77 on-close="onPasswordClosed_" set-modes="{{setModes_}}">
76 </settings-password-prompt-dialog> 78 </settings-password-prompt-dialog>
77 <settings-setup-pin-dialog id="setupPin" on-done="onPinSetupDone_" 79 <settings-setup-pin-dialog id="setupPin" on-done="onPinSetupDone_"
78 set-modes="[[setModes_]]"> 80 set-modes="[[setModes_]]">
79 </settings-setup-pin-dialog> 81 </settings-setup-pin-dialog>
80 </div> 82 </div>
81 </template> 83 </template>
82 84
83 <script src="lock_screen.js"></script> 85 <script src="lock_screen.js"></script>
84 </dom-module> 86 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698