Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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> |
| OLD | NEW |