| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
_menu.html"> | 1 <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"> | 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 7 <link rel="import" href="../i18n_setup.html"> | 7 <link rel="import" href="../i18n_setup.html"> |
| 8 <link rel="import" href="../icons.html"> | 8 <link rel="import" href="../icons.html"> |
| 9 <link rel="import" href="../route.html"> | 9 <link rel="import" href="../route.html"> |
| 10 <link rel="import" href="../settings_shared_css.html"> | 10 <link rel="import" href="../settings_shared_css.html"> |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 <iron-icon icon="[[computeIconControlledBy_(item)]]"></iron-icon> | 83 <iron-icon icon="[[computeIconControlledBy_(item)]]"></iron-icon> |
| 84 </template> | 84 </template> |
| 85 | 85 |
| 86 <paper-icon-button id="dots" icon="cr:more-vert" | 86 <paper-icon-button id="dots" icon="cr:more-vert" |
| 87 hidden="[[isActionMenuHidden_(item.source)]]" | 87 hidden="[[isActionMenuHidden_(item.source)]]" |
| 88 on-tap="onShowActionMenuTap_" title="$i18n{moreActions}"> | 88 on-tap="onShowActionMenuTap_" title="$i18n{moreActions}"> |
| 89 </paper-icon-button> | 89 </paper-icon-button> |
| 90 <template is="dom-if" if="[[enableSiteSettings_]]"> | 90 <template is="dom-if" if="[[enableSiteSettings_]]"> |
| 91 <div on-tap="onOriginTap_" actionable> | 91 <div on-tap="onOriginTap_" actionable> |
| 92 <button class="subpage-arrow" is="paper-icon-button-light" | 92 <button class="subpage-arrow" is="paper-icon-button-light" |
| 93 aria-label="[[item.displayName]]" | 93 aria-label$="[[item.displayName]]" |
| 94 aria-describedby="siteDescription"></button> | 94 aria-describedby="siteDescription"></button> |
| 95 </div> | 95 </div> |
| 96 </template> | 96 </template> |
| 97 </div> | 97 </div> |
| 98 </template> | 98 </template> |
| 99 </div> | 99 </div> |
| 100 </div> | 100 </div> |
| 101 <template is="dom-if" if="[[showEditExceptionDialog_]]" restamp> | 101 <template is="dom-if" if="[[showEditExceptionDialog_]]" restamp> |
| 102 <settings-edit-exception-dialog model="[[actionMenuSite_]]" | 102 <settings-edit-exception-dialog model="[[actionMenuSite_]]" |
| 103 on-close="onEditExceptionDialogClosed_"> | 103 on-close="onEditExceptionDialogClosed_"> |
| 104 </settings-edit-exception-dialog> | 104 </settings-edit-exception-dialog> |
| 105 </template> | 105 </template> |
| 106 </template> | 106 </template> |
| 107 <script src="site_list.js"></script> | 107 <script src="site_list.js"></script> |
| 108 </dom-module> | 108 </dom-module> |
| OLD | NEW |