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

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

Issue 2842303004: MD Settings: update dialogs to focus without ink when using mouse (Closed)
Patch Set: you wanted this... 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
OLDNEW
1 <link rel="import" href="chrome://resources/html/assert.html">
2 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html">
1 <link rel="import" href="chrome://resources/html/polymer.html"> 3 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
3 <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">
4 <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">
5 <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">
6 <link rel="import" href="../controls/settings_toggle_button.html"> 8 <link rel="import" href="../controls/settings_toggle_button.html">
7 <link rel="import" href="easy_unlock_browser_proxy.html"> 9 <link rel="import" href="easy_unlock_browser_proxy.html">
8 <link rel="import" href="easy_unlock_turn_off_dialog.html"> 10 <link rel="import" href="easy_unlock_turn_off_dialog.html">
9 <link rel="import" href="fingerprint_browser_proxy.html"> 11 <link rel="import" href="fingerprint_browser_proxy.html">
10 <link rel="import" href="lock_screen_constants.html"> 12 <link rel="import" href="lock_screen_constants.html">
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> 151 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]">
150 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" 152 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"
151 on-close="onEasyUnlockTurnOffDialogClose_"> 153 on-close="onEasyUnlockTurnOffDialogClose_">
152 </easy-unlock-turn-off-dialog> 154 </easy-unlock-turn-off-dialog>
153 </template> 155 </template>
154 </div> 156 </div>
155 </template> 157 </template>
156 158
157 <script src="lock_screen.js"></script> 159 <script src="lock_screen.js"></script>
158 </dom-module> 160 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698