| 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/icons.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <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"> |
| 4 <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"> |
| 5 <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"> |
| 6 <link rel="import" href="/i18n_setup.html"> | 7 <link rel="import" href="/i18n_setup.html"> |
| 7 <link rel="import" href="/icons.html"> | 8 <link rel="import" href="/icons.html"> |
| 8 <link rel="import" href="/route.html"> | 9 <link rel="import" href="/route.html"> |
| 9 <link rel="import" href="/settings_action_menu.html"> | |
| 10 <link rel="import" href="/settings_shared_css.html"> | 10 <link rel="import" href="/settings_shared_css.html"> |
| 11 <link rel="import" href="/site_settings/add_site_dialog.html"> | 11 <link rel="import" href="/site_settings/add_site_dialog.html"> |
| 12 <link rel="import" href="/site_settings/constants.html"> | 12 <link rel="import" href="/site_settings/constants.html"> |
| 13 <link rel="import" href="/site_settings/site_settings_behavior.html"> | 13 <link rel="import" href="/site_settings/site_settings_behavior.html"> |
| 14 <link rel="import" href="/site_settings/site_settings_prefs_browser_proxy.html"> | 14 <link rel="import" href="/site_settings/site_settings_prefs_browser_proxy.html"> |
| 15 | 15 |
| 16 <dom-module id="site-list"> | 16 <dom-module id="site-list"> |
| 17 <template> | 17 <template> |
| 18 <style include="settings-shared"> | 18 <style include="settings-shared"> |
| 19 paper-button { | 19 paper-button { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 30 } | 30 } |
| 31 </style> | 31 </style> |
| 32 <div id="category" hidden> | 32 <div id="category" hidden> |
| 33 <div class="settings-box first" hidden$="[[allSites]]"> | 33 <div class="settings-box first" hidden$="[[allSites]]"> |
| 34 <h2 class="start">[[categoryHeader]]</h2> | 34 <h2 class="start">[[categoryHeader]]</h2> |
| 35 <paper-button class="secondary-button" id="icon" on-tap="onAddSiteTap_"> | 35 <paper-button class="secondary-button" id="icon" on-tap="onAddSiteTap_"> |
| 36 $i18n{add} | 36 $i18n{add} |
| 37 </paper-button> | 37 </paper-button> |
| 38 </div> | 38 </div> |
| 39 | 39 |
| 40 <dialog is="settings-action-menu"> | 40 <dialog is="cr-action-menu"> |
| 41 <button class="dropdown-item" role="option" id="allow" | 41 <button class="dropdown-item" role="option" id="allow" |
| 42 on-tap="onAllowTap_" hidden$="[[!showAllowAction_]]"> | 42 on-tap="onAllowTap_" hidden$="[[!showAllowAction_]]"> |
| 43 $i18n{siteSettingsActionAllow} | 43 $i18n{siteSettingsActionAllow} |
| 44 </button> | 44 </button> |
| 45 <button class="dropdown-item" role="option" id="block" | 45 <button class="dropdown-item" role="option" id="block" |
| 46 on-tap="onBlockTap_" hidden$="[[!showBlockAction_]]"> | 46 on-tap="onBlockTap_" hidden$="[[!showBlockAction_]]"> |
| 47 $i18n{siteSettingsActionBlock} | 47 $i18n{siteSettingsActionBlock} |
| 48 </button> | 48 </button> |
| 49 <button class="dropdown-item" role="option" id="sessionOnly" | 49 <button class="dropdown-item" role="option" id="sessionOnly" |
| 50 on-tap="onSessionOnlyTap_" | 50 on-tap="onSessionOnlyTap_" |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 </button> | 88 </button> |
| 89 </div> | 89 </div> |
| 90 </template> | 90 </template> |
| 91 </div> | 91 </div> |
| 92 </template> | 92 </template> |
| 93 </div> | 93 </div> |
| 94 </div> | 94 </div> |
| 95 </template> | 95 </template> |
| 96 <script src="site_list.js"></script> | 96 <script src="site_list.js"></script> |
| 97 </dom-module> | 97 </dom-module> |
| OLD | NEW |