| 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/cr_elements/cr_action_menu/cr_action
_menu.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
_menu.html"> |
| 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 4 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in
dicator.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in
dicator.html"> |
| 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 9 <link rel="import" href="../i18n_setup.html"> | 9 <link rel="import" href="../i18n_setup.html"> |
| 10 <link rel="import" href="../icons.html"> | 10 <link rel="import" href="../icons.html"> |
| 11 <link rel="import" href="../route.html"> | 11 <link rel="import" href="../route.html"> |
| 12 <link rel="import" href="../settings_shared_css.html"> | 12 <link rel="import" href="../settings_shared_css.html"> |
| 13 <link rel="import" href="add_site_dialog.html"> | 13 <link rel="import" href="add_site_dialog.html"> |
| 14 <link rel="import" href="constants.html"> | 14 <link rel="import" href="constants.html"> |
| 15 <link rel="import" href="edit_exception_dialog.html"> | 15 <link rel="import" href="edit_exception_dialog.html"> |
| 16 <link rel="import" href="site_settings_behavior.html"> | 16 <link rel="import" href="site_settings_behavior.html"> |
| 17 <link rel="import" href="site_settings_prefs_browser_proxy.html"> | 17 <link rel="import" href="site_settings_prefs_browser_proxy.html"> |
| 18 | 18 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 </div> | 83 </div> |
| 84 <div class="separator"></div> | 84 <div class="separator"></div> |
| 85 </template> | 85 </template> |
| 86 </div> | 86 </div> |
| 87 <template is="dom-if" if="[[item.controlledBy]]"> | 87 <template is="dom-if" if="[[item.controlledBy]]"> |
| 88 <cr-policy-pref-indicator pref="[[item]]" | 88 <cr-policy-pref-indicator pref="[[item]]" |
| 89 icon-aria-label="[[label]]"> | 89 icon-aria-label="[[label]]"> |
| 90 </cr-policy-pref-indicator> | 90 </cr-policy-pref-indicator> |
| 91 </template> | 91 </template> |
| 92 | 92 |
| 93 <paper-icon-button id="resetSite" icon="cr:delete" | 93 <button is="paper-icon-button-light" id="resetSite" |
| 94 class="icon-delete" on-tap="onResetButtonTap_" |
| 94 hidden="[[isResetButtonHidden_( | 95 hidden="[[isResetButtonHidden_( |
| 95 item.enforcement, readOnlyList)]]" | 96 item.enforcement, readOnlyList)]]" |
| 96 on-tap="onResetButtonTap_" | |
| 97 alt="$i18n{siteSettingsActionReset}"> | 97 alt="$i18n{siteSettingsActionReset}"> |
| 98 </paper-icon-button> | 98 </button> |
| 99 <paper-icon-button id="actionMenuButton" icon="cr:more-vert" | 99 <button is="paper-icon-button-light" id="actionMenuButton" |
| 100 class="icon-more-vert" on-tap="onShowActionMenuTap_" |
| 100 hidden= | 101 hidden= |
| 101 "[[isActionMenuHidden_(item.enforcement, readOnlyList)]]" | 102 "[[isActionMenuHidden_(item.enforcement, readOnlyList)]]" |
| 102 on-tap="onShowActionMenuTap_" title="$i18n{moreActions}"> | 103 title="$i18n{moreActions}"> |
| 103 </paper-icon-button> | 104 </button> |
| 104 </div> | 105 </div> |
| 105 </template> | 106 </template> |
| 106 </div> | 107 </div> |
| 107 </div> | 108 </div> |
| 108 <template is="dom-if" if="[[showEditExceptionDialog_]]" restamp> | 109 <template is="dom-if" if="[[showEditExceptionDialog_]]" restamp> |
| 109 <settings-edit-exception-dialog model="[[actionMenuSite_]]" | 110 <settings-edit-exception-dialog model="[[actionMenuSite_]]" |
| 110 on-close="onEditExceptionDialogClosed_"> | 111 on-close="onEditExceptionDialogClosed_"> |
| 111 </settings-edit-exception-dialog> | 112 </settings-edit-exception-dialog> |
| 112 </template> | 113 </template> |
| 113 </template> | 114 </template> |
| 114 <script src="site_list.js"></script> | 115 <script src="site_list.js"></script> |
| 115 </dom-module> | 116 </dom-module> |
| OLD | NEW |