| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 1 <link rel="import" href="chrome://resources/html/assert.html"> | 3 <link rel="import" href="chrome://resources/html/assert.html"> |
| 2 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> | 4 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 5 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 6 <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"> | 7 <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"> | 8 <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"> | 9 <link rel="import" href="../controls/settings_toggle_button.html"> |
| 9 <link rel="import" href="easy_unlock_browser_proxy.html"> | 10 <link rel="import" href="easy_unlock_browser_proxy.html"> |
| 10 <link rel="import" href="easy_unlock_turn_off_dialog.html"> | 11 <link rel="import" href="easy_unlock_turn_off_dialog.html"> |
| 11 <link rel="import" href="fingerprint_browser_proxy.html"> | 12 <link rel="import" href="fingerprint_browser_proxy.html"> |
| 12 <link rel="import" href="lock_screen_constants.html"> | 13 <link rel="import" href="lock_screen_constants.html"> |
| 13 <link rel="import" href="lock_state_behavior.html"> | 14 <link rel="import" href="lock_state_behavior.html"> |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]" restamp> | 171 <template is="dom-if" if="[[showEasyUnlockTurnOffDialog_]]" restamp> |
| 171 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" | 172 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog" |
| 172 on-close="onEasyUnlockTurnOffDialogClose_"> | 173 on-close="onEasyUnlockTurnOffDialogClose_"> |
| 173 </easy-unlock-turn-off-dialog> | 174 </easy-unlock-turn-off-dialog> |
| 174 </template> | 175 </template> |
| 175 </div> | 176 </div> |
| 176 </template> | 177 </template> |
| 177 | 178 |
| 178 <script src="lock_screen.js"></script> | 179 <script src="lock_screen.js"></script> |
| 179 </dom-module> | 180 </dom-module> |
| OLD | NEW |