| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/assert.html"> | 1 <link rel="import" href="chrome://resources/html/assert.html"> |
| 2 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> | 2 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.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/cr_elements/cr_action_menu/cr_action
_menu.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/cr_action_menu/cr_action
_menu.html"> |
| 5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 6 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in
dicator.html"> | 6 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in
dicator.html"> |
| 7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 8 <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/iron-icon/iron-icon.htm
l"> |
| 9 <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"> |
| 10 <link rel="import" href="../i18n_setup.html"> | 10 <link rel="import" href="../i18n_setup.html"> |
| 11 <link rel="import" href="../icons.html"> | 11 <link rel="import" href="../icons.html"> |
| 12 <link rel="import" href="../route.html"> | 12 <link rel="import" href="../route.html"> |
| 13 <link rel="import" href="../settings_shared_css.html"> | 13 <link rel="import" href="../settings_shared_css.html"> |
| 14 <link rel="import" href="add_site_dialog.html"> | 14 <link rel="import" href="add_site_dialog.html"> |
| 15 <link rel="import" href="constants.html"> | 15 <link rel="import" href="constants.html"> |
| 16 <link rel="import" href="edit_exception_dialog.html"> | 16 <link rel="import" href="edit_exception_dialog.html"> |
| 17 <link rel="import" href="site_settings_behavior.html"> | 17 <link rel="import" href="site_settings_behavior.html"> |
| 18 <link rel="import" href="site_settings_prefs_browser_proxy.html"> | 18 <link rel="import" href="site_settings_prefs_browser_proxy.html"> |
| 19 | 19 |
| 20 <dom-module id="site-list"> | 20 <dom-module id="site-list"> |
| 21 <template> | 21 <template> |
| 22 <style include="settings-shared iron-flex"> | 22 <style include="settings-shared iron-flex"> |
| 23 .selectable { | 23 .selectable { |
| 24 -webkit-user-select: text; | 24 -webkit-user-select: text; |
| 25 } | 25 } |
| 26 </style> | 26 </style> |
| 27 <div id="category"> | 27 <div id="category"> |
| 28 <div class="settings-box first" hidden$="[[allSites]]"> | 28 <div class="settings-box first"> |
| 29 <h2 class="start">[[categoryHeader]]</h2> | 29 <h2 class="start">[[categoryHeader]]</h2> |
| 30 <paper-button id="addSite" | 30 <paper-button id="addSite" |
| 31 class="secondary-button header-aligned-button" | 31 class="secondary-button header-aligned-button" |
| 32 hidden="[[readOnlyList]]" on-tap="onAddSiteTap_"> | 32 hidden="[[readOnlyList]]" on-tap="onAddSiteTap_"> |
| 33 $i18n{add} | 33 $i18n{add} |
| 34 </paper-button> | 34 </paper-button> |
| 35 </div> | 35 </div> |
| 36 | 36 |
| 37 <dialog is="cr-action-menu"> | 37 <dialog is="cr-action-menu"> |
| 38 <button class="dropdown-item" role="option" id="allow" | 38 <button class="dropdown-item" role="option" id="allow" |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 </div> | 105 </div> |
| 106 </div> | 106 </div> |
| 107 <template is="dom-if" if="[[showEditExceptionDialog_]]" restamp> | 107 <template is="dom-if" if="[[showEditExceptionDialog_]]" restamp> |
| 108 <settings-edit-exception-dialog model="[[actionMenuSite_]]" | 108 <settings-edit-exception-dialog model="[[actionMenuSite_]]" |
| 109 on-close="onEditExceptionDialogClosed_"> | 109 on-close="onEditExceptionDialogClosed_"> |
| 110 </settings-edit-exception-dialog> | 110 </settings-edit-exception-dialog> |
| 111 </template> | 111 </template> |
| 112 </template> | 112 </template> |
| 113 <script src="site_list.js"></script> | 113 <script src="site_list.js"></script> |
| 114 </dom-module> | 114 </dom-module> |
| OLD | NEW |