Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-dropdown/iron-drop down.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-dropdown/iron-drop down.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="chrome://resources/polymer/v1_0/paper-menu/paper-submen u.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-submen u.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"> |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 76 hidden$="[[!showSessionOnlyActionForSite_(item)]]"> | 76 hidden$="[[!showSessionOnlyActionForSite_(item)]]"> |
| 77 $i18n{siteSettingsActionSessionOnly} | 77 $i18n{siteSettingsActionSessionOnly} |
| 78 </button> | 78 </button> |
| 79 <button class="dropdown-item" role="option" id="reset" | 79 <button class="dropdown-item" role="option" id="reset" |
| 80 on-tap="onResetTap_"> | 80 on-tap="onResetTap_"> |
| 81 $i18n{siteSettingsActionReset} | 81 $i18n{siteSettingsActionReset} |
| 82 </button> | 82 </button> |
| 83 </div> | 83 </div> |
| 84 </iron-dropdown> | 84 </iron-dropdown> |
| 85 </template> | 85 </template> |
| 86 <template is="dom-if" if="[[enableSiteSettings_]]"> | |
| 87 <div on-tap="onOriginTap_" actionable> | |
| 88 <button class="subpage-arrow" is="paper-icon-button-light"> | |
| 89 </button> | |
| 90 </div> | |
| 91 </template> | |
|
dschuyler
2016/10/17 21:16:35
Now that the site details are behind a flag, these
| |
| 86 </div> | 92 </div> |
| 87 </template> | 93 </template> |
| 88 | 94 |
| 89 <template is="dom-if" if="[[!allSites]]"> | 95 <template is="dom-if" if="[[!allSites]]"> |
| 90 <div class="list-item list-button" on-tap="onAddSiteTap_"> | 96 <div class="list-item list-button" on-tap="onAddSiteTap_"> |
| 91 $i18n{addSiteLink} | 97 $i18n{addSiteLink} |
| 92 </div> | 98 </div> |
| 93 </template> | 99 </template> |
| 94 </div> | 100 </div> |
| 95 </paper-submenu> | 101 </paper-submenu> |
| 96 </template> | 102 </template> |
| 97 <script src="site_list.js"></script> | 103 <script src="site_list.js"></script> |
| 98 </dom-module> | 104 </dom-module> |
| OLD | NEW |