| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
_menu.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
_menu.html"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 3 <link rel="import" href="chrome://resources/html/assert.html"> | 5 <link rel="import" href="chrome://resources/html/assert.html"> |
| 4 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> | 6 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> |
| 5 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 6 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 7 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm
l"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm
l"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 9 <link rel="import" href="../controls/settings_toggle_button.html"> | 10 <link rel="import" href="../controls/settings_toggle_button.html"> |
| 10 <link rel="import" href="../controls/extension_controlled_indicator.html"> | 11 <link rel="import" href="../controls/extension_controlled_indicator.html"> |
| 11 <link rel="import" href="../global_scroll_target_behavior.html"> | 12 <link rel="import" href="../global_scroll_target_behavior.html"> |
| 12 <link rel="import" href="../prefs/prefs.html"> | 13 <link rel="import" href="../prefs/prefs.html"> |
| 13 <link rel="import" href="../settings_shared_css.html"> | 14 <link rel="import" href="../settings_shared_css.html"> |
| 14 <link rel="import" href="password_edit_dialog.html"> | 15 <link rel="import" href="password_edit_dialog.html"> |
| 15 <link rel="import" href="passwords_shared_css.html"> | 16 <link rel="import" href="passwords_shared_css.html"> |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 </div> | 110 </div> |
| 110 </template> | 111 </template> |
| 111 <div id="noExceptionsLabel" class="list-item" | 112 <div id="noExceptionsLabel" class="list-item" |
| 112 hidden$="[[hasSome_(passwordExceptions)]]"> | 113 hidden$="[[hasSome_(passwordExceptions)]]"> |
| 113 $i18n{noExceptionsFound} | 114 $i18n{noExceptionsFound} |
| 114 </div> | 115 </div> |
| 115 </div> | 116 </div> |
| 116 </template> | 117 </template> |
| 117 <script src="passwords_section.js"></script> | 118 <script src="passwords_section.js"></script> |
| 118 </dom-module> | 119 </dom-module> |
| OLD | NEW |