| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> |
| 3 <link rel="import" href="/people_page/quick_unlock_routing_behavior.html"> | 3 <link rel="import" href="/people_page/quick_unlock_routing_behavior.html"> |
| 4 <link rel="import" href="/route.html"> |
| 4 <link rel="import" href="/settings_page/settings_section.html"> | 5 <link rel="import" href="/settings_page/settings_section.html"> |
| 5 <link rel="import" href="/settings_shared_css.html"> | 6 <link rel="import" href="/settings_shared_css.html"> |
| 6 | 7 |
| 7 <dom-module id="settings-quick-unlock-authenticate"> | 8 <dom-module id="settings-quick-unlock-authenticate"> |
| 8 <template> | 9 <template> |
| 9 <style include="settings-shared"></style> | 10 <style include="settings-shared"></style> |
| 10 <style> | 11 <style> |
| 11 #profile-name { | 12 #profile-name { |
| 12 margin-right: 16px; | 13 margin-right: 16px; |
| 13 } | 14 } |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 on-input="startDelayedPasswordCheck_" | 46 on-input="startDelayedPasswordCheck_" |
| 46 error-message="$i18n{quickUnlockInvalidPassword}" | 47 error-message="$i18n{quickUnlockInvalidPassword}" |
| 47 aria-disabled="false"> | 48 aria-disabled="false"> |
| 48 </paper-input> | 49 </paper-input> |
| 49 </div> | 50 </div> |
| 50 </div> | 51 </div> |
| 51 </template> | 52 </template> |
| 52 | 53 |
| 53 <script src="quick_unlock_authenticate.js"></script> | 54 <script src="quick_unlock_authenticate.js"></script> |
| 54 </dom-module> | 55 </dom-module> |
| OLD | NEW |