| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 3 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> |
| 5 <link rel="import" href="lock_screen_constants.html"> | 6 <link rel="import" href="lock_screen_constants.html"> |
| 6 <link rel="import" href="../settings_shared_css.html"> | 7 <link rel="import" href="../settings_shared_css.html"> |
| 7 | 8 |
| 8 <dom-module id="settings-password-prompt-dialog"> | 9 <dom-module id="settings-password-prompt-dialog"> |
| 9 <template> | 10 <template> |
| 10 <style include="settings-shared"> | 11 <style include="settings-shared"> |
| 11 #passwordInput { | 12 #passwordInput { |
| 12 display: inline-block; | 13 display: inline-block; |
| (...skipping 26 matching lines...) Expand all Loading... |
| 39 | 40 |
| 40 <paper-button class="action-button" on-tap="submitPassword_" | 41 <paper-button class="action-button" on-tap="submitPassword_" |
| 41 disabled$="[[!enableConfirm_(password_, passwordInvalid_)]]"> | 42 disabled$="[[!enableConfirm_(password_, passwordInvalid_)]]"> |
| 42 $i18n{confirm} | 43 $i18n{confirm} |
| 43 </paper-button> | 44 </paper-button> |
| 44 </div> | 45 </div> |
| 45 </dialog> | 46 </dialog> |
| 46 </template> | 47 </template> |
| 47 <script src="password_prompt_dialog.js"></script> | 48 <script src="password_prompt_dialog.js"></script> |
| 48 </dom-module> | 49 </dom-module> |
| OLD | NEW |