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