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

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

Issue 2889803002: md settings: Give focus to password prompt on tap. (Closed)
Patch Set: Created 3 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/resources/settings/people_page/people_page.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="chrome://resources/html/assert.html"> 1 <link rel="import" href="chrome://resources/html/assert.html">
2 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> 2 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html">
3 <link rel="import" href="chrome://resources/html/polymer.html"> 3 <link rel="import" href="chrome://resources/html/polymer.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/html/web_ui_listener_behavior.html"> 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
6 <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-icon-button/paper -icon-button-light.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper -radio-group.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper -radio-group.html">
8 <link rel="import" href="../controls/settings_toggle_button.html"> 8 <link rel="import" href="../controls/settings_toggle_button.html">
9 <link rel="import" href="easy_unlock_browser_proxy.html"> 9 <link rel="import" href="easy_unlock_browser_proxy.html">
10 <link rel="import" href="easy_unlock_turn_off_dialog.html"> 10 <link rel="import" href="easy_unlock_turn_off_dialog.html">
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 </template> 164 </template>
165 </div> 165 </div>
166 </template> 166 </template>
167 167
168 <settings-password-prompt-dialog id="passwordPrompt" 168 <settings-password-prompt-dialog id="passwordPrompt"
169 on-close="onPasswordClosed_" set-modes="{{setModes_}}"> 169 on-close="onPasswordClosed_" set-modes="{{setModes_}}">
170 </settings-password-prompt-dialog> 170 </settings-password-prompt-dialog>
171 171
172 <settings-setup-pin-dialog id="setupPin" on-done="onPinSetupDone_" 172 <settings-setup-pin-dialog id="setupPin" on-done="onPinSetupDone_"
173 on-close="onSetupPinClosed_" set-modes="[[setModes_]]"> 173 on-close="onSetupPinClosed_" set-modes="[[setModes_]]">
174 </settings-setup-pin-dialog> 174 </settings-setup-pin-dialog>
sammiequon 2017/05/16 22:27:38 On a separate note/CL should these dialogs be wrap
stevenjb 2017/05/16 22:51:09 Yep
sammiequon 2017/05/16 23:07:28 Got it. Filed a bug.
175 175
176 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> 176 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]" restamp>
177 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" 177 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"
178 on-close="onEasyUnlockTurnOffDialogClose_"> 178 on-close="onEasyUnlockTurnOffDialogClose_">
179 </easy-unlock-turn-off-dialog> 179 </easy-unlock-turn-off-dialog>
180 </template> 180 </template>
181 </div> 181 </div>
182 </template> 182 </template>
183 183
184 <script src="lock_screen.js"></script> 184 <script src="lock_screen.js"></script>
185 </dom-module> 185 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/people_page/people_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698