| 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/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/i18n_behavior.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-button/paper-butt
on.html"> |
| 5 <link rel="import" href="../i18n_setup.html"> |
| 5 <link rel="import" href="../icons.html"> | 6 <link rel="import" href="../icons.html"> |
| 6 <link rel="import" href="lock_screen_constants.html"> | 7 <link rel="import" href="lock_screen_constants.html"> |
| 7 <link rel="import" href="pin_keyboard.html"> | 8 <link rel="import" href="pin_keyboard.html"> |
| 8 <link rel="import" href="../settings_shared_css.html"> | 9 <link rel="import" href="../settings_shared_css.html"> |
| 9 | 10 |
| 10 <dom-module id="settings-setup-pin-dialog"> | 11 <dom-module id="settings-setup-pin-dialog"> |
| 11 <template> | 12 <template> |
| 12 <style include="settings-shared"></style> | 13 <style include="settings-shared"></style> |
| 13 <style> | 14 <style> |
| 14 .warning { | 15 .warning { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 disabled$="[[!enableSubmit_]]"> | 60 disabled$="[[!enableSubmit_]]"> |
| 60 <span>[[getContinueMessage_(isConfirmStep_)]]</span> | 61 <span>[[getContinueMessage_(isConfirmStep_)]]</span> |
| 61 </paper-button> | 62 </paper-button> |
| 62 </div> | 63 </div> |
| 63 </div> | 64 </div> |
| 64 </dialog> | 65 </dialog> |
| 65 </template> | 66 </template> |
| 66 | 67 |
| 67 <script src="setup_pin_dialog.js"></script> | 68 <script src="setup_pin_dialog.js"></script> |
| 68 </dom-module> | 69 </dom-module> |
| OLD | NEW |