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

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: merge 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]"> 150 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]">
149 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" 151 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"
150 on-close="onEasyUnlockTurnOffDialogClose_"> 152 on-close="onEasyUnlockTurnOffDialogClose_">
151 </easy-unlock-turn-off-dialog> 153 </easy-unlock-turn-off-dialog>
152 </template> 154 </template>
153 </div> 155 </div>
154 </template> 156 </template>
155 157
156 <script src="lock_screen.js"></script> 158 <script src="lock_screen.js"></script>
157 </dom-module> 159 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698