Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Side by Side Diff: chrome/browser/resources/md_history/history_toolbar.html

Issue 2376613002: MD History: Replace tap listeners with click listeners for icon-button-light (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/polymer/v1_0/iron-icon/iron-icon.htm l"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
4 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 4 <link rel="import" href="chrome://resources/cr_elements/icons.html">
5 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r ender.html"> 5 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r ender.html">
6 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht ml"> 6 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht ml">
7 <link rel="import" href="chrome://history/browser_service.html"> 7 <link rel="import" href="chrome://history/browser_service.html">
8 <link rel="import" href="chrome://history/icons.html"> 8 <link rel="import" href="chrome://history/icons.html">
9 <link rel="import" href="chrome://history/shared_style.html"> 9 <link rel="import" href="chrome://history/shared_style.html">
10 10
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 show-menu="[[hasDrawer]]" 183 show-menu="[[hasDrawer]]"
184 show-menu-promo="[[showMenuPromo_]]" 184 show-menu-promo="[[showMenuPromo_]]"
185 menu-label="$i18n{historyMenuButton}" 185 menu-label="$i18n{historyMenuButton}"
186 menu-promo="$i18n{menuPromo}" 186 menu-promo="$i18n{menuPromo}"
187 close-menu-promo="$i18n{closeMenuPromo}" 187 close-menu-promo="$i18n{closeMenuPromo}"
188 on-search-changed="onSearchChanged_" 188 on-search-changed="onSearchChanged_"
189 on-cr-menu-promo-shown="onMenuPromoShown_"> 189 on-cr-menu-promo-shown="onMenuPromoShown_">
190 <div class="more-actions"> 190 <div class="more-actions">
191 <template is="dom-if" if="[[showSyncNotice]]"> 191 <template is="dom-if" if="[[showSyncNotice]]">
192 <button is="paper-icon-button-light" id="info-button" 192 <button is="paper-icon-button-light" id="info-button"
193 on-tap="onInfoButtonTap_" 193 on-click="onInfoButtonTap_"
194 aria-label="$i18n{hasSyncedResultsDescription}"> 194 aria-label="$i18n{hasSyncedResultsDescription}">
195 <iron-icon icon="history:info-outline" id="info-button-icon"> 195 <iron-icon icon="history:info-outline" id="info-button-icon">
196 </iron-icon> 196 </iron-icon>
197 </button> 197 </button>
198 </template> 198 </template>
199 </div> 199 </div>
200 </cr-toolbar> 200 </cr-toolbar>
201 <template is="cr-lazy-render" id="syncNotice"> 201 <template is="cr-lazy-render" id="syncNotice">
202 <iron-dropdown vertical-align="top" horizontal-align="right" 202 <iron-dropdown vertical-align="top" horizontal-align="right"
203 allow-outside-scroll> 203 allow-outside-scroll>
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 class="rtl-reversible"></paper-icon-button> 242 class="rtl-reversible"></paper-icon-button>
243 <paper-icon-button icon="cr:chevron-right" 243 <paper-icon-button icon="cr:chevron-right"
244 alt="$i18n{rangeNext}" title="$i18n{rangeNext}" 244 alt="$i18n{rangeNext}" title="$i18n{rangeNext}"
245 class="rtl-reversible"></paper-icon-button> 245 class="rtl-reversible"></paper-icon-button>
246 </div> 246 </div>
247 </div> 247 </div>
248 </template> 248 </template>
249 </template> 249 </template>
250 <script src="chrome://history/history_toolbar.js"></script> 250 <script src="chrome://history/history_toolbar.js"></script>
251 </dom-module> 251 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/history_item.html ('k') | chrome/browser/resources/md_history/lazy_load.vulcanized.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698