| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 4 <link rel="import" href="../focus_row_behavior.html"> | 5 <link rel="import" href="../focus_row_behavior.html"> |
| 5 <link rel="import" href="../settings_shared_css.html"> | 6 <link rel="import" href="../settings_shared_css.html"> |
| 6 <link rel="import" href="passwords_shared_css.html"> | 7 <link rel="import" href="passwords_shared_css.html"> |
| 7 | 8 |
| 8 <dom-module id="password-list-item"> | 9 <dom-module id="password-list-item"> |
| 9 <template> | 10 <template> |
| 10 <style include="settings-shared passwords-shared"> | 11 <style include="settings-shared passwords-shared"> |
| 11 #password { | 12 #password { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 </div> | 55 </div> |
| 55 <paper-icon-button id="passwordMenu" icon="cr:more-vert" | 56 <paper-icon-button id="passwordMenu" icon="cr:more-vert" |
| 56 on-tap="onPasswordMenuTap_" title="$i18n{moreActions}" | 57 on-tap="onPasswordMenuTap_" title="$i18n{moreActions}" |
| 57 focus-row-control focus-type="passwordMenu"> | 58 focus-row-control focus-type="passwordMenu"> |
| 58 </paper-icon-button> | 59 </paper-icon-button> |
| 59 </div> | 60 </div> |
| 60 </div> | 61 </div> |
| 61 </template> | 62 </template> |
| 62 <script src="password_list_item.js"></script> | 63 <script src="password_list_item.js"></script> |
| 63 </dom-module> | 64 </dom-module> |
| OLD | NEW |