| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 <div class="selectable secondary" | 75 <div class="selectable secondary" |
| 76 >[[computeSiteDescription_(item)]]</div> | 76 >[[computeSiteDescription_(item)]]</div> |
| 77 </div> | 77 </div> |
| 78 </div> | 78 </div> |
| 79 | 79 |
| 80 <template is="dom-if" if="[[!!computeIconControlledBy_(item)]]"> | 80 <template is="dom-if" if="[[!!computeIconControlledBy_(item)]]"> |
| 81 <iron-icon icon="[[computeIconControlledBy_(item)]]"></iron-icon> | 81 <iron-icon icon="[[computeIconControlledBy_(item)]]"></iron-icon> |
| 82 </template> | 82 </template> |
| 83 | 83 |
| 84 <paper-icon-button id="dots" icon="cr:more-vert" | 84 <paper-icon-button id="dots" icon="cr:more-vert" |
| 85 hidden="[[isExceptionControlled_(item.source)]]" | 85 hidden="[[isActionMenuHidden_(item.source)]]" |
| 86 on-tap="onShowActionMenuTap_"> | 86 on-tap="onShowActionMenuTap_"> |
| 87 </paper-icon-button> | 87 </paper-icon-button> |
| 88 <template is="dom-if" if="[[enableSiteSettings_]]"> | 88 <template is="dom-if" if="[[enableSiteSettings_]]"> |
| 89 <div on-tap="onOriginTap_" actionable> | 89 <div on-tap="onOriginTap_" actionable> |
| 90 <button class="subpage-arrow" is="paper-icon-button-light"> | 90 <button class="subpage-arrow" is="paper-icon-button-light"> |
| 91 </button> | 91 </button> |
| 92 </div> | 92 </div> |
| 93 </template> | 93 </template> |
| 94 </div> | 94 </div> |
| 95 </template> | 95 </template> |
| 96 </div> | 96 </div> |
| 97 </div> | 97 </div> |
| 98 </template> | 98 </template> |
| 99 <script src="site_list.js"></script> | 99 <script src="site_list.js"></script> |
| 100 </dom-module> | 100 </dom-module> |
| OLD | NEW |