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

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

Issue 2570253002: [MD History] Fix toolbar dates in grouped mode. (Closed)
Patch Set: rebase Created 3 years, 11 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/cr_elements/cr_lazy_render/cr_lazy_r ender.html"> 2 <link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_r ender.html">
3 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> 3 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-announcer/iro n-a11y-announcer.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-announcer/iro n-a11y-announcer.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.h tml"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.h tml">
6 <link rel="import" href="chrome://history/browser_service.html"> 6 <link rel="import" href="chrome://history/browser_service.html">
7 <link rel="import" href="chrome://history/history_list.html"> 7 <link rel="import" href="chrome://history/history_list.html">
8 <link rel="import" href="chrome://history/shared_style.html"> 8 <link rel="import" href="chrome://history/shared_style.html">
9 9
10 <!-- Lazy loaded: cr-dialog, cr-action-menu, history-grouped-list, paper-button. 10 <!-- Lazy loaded: cr-dialog, cr-action-menu, history-grouped-list, paper-button.
(...skipping 21 matching lines...) Expand all
32 attr-for-selected="id" 32 attr-for-selected="id"
33 selected="[[selectedPage_]]" 33 selected="[[selectedPage_]]"
34 fallback-selection="infinite-list"> 34 fallback-selection="infinite-list">
35 <history-list id="infinite-list" 35 <history-list id="infinite-list"
36 querying="[[queryState.querying]]" 36 querying="[[queryState.querying]]"
37 searched-term="[[queryResult.info.term]]"> 37 searched-term="[[queryResult.info.term]]">
38 </history-list> 38 </history-list>
39 <template is="dom-if" if="[[grouped]]"> 39 <template is="dom-if" if="[[grouped]]">
40 <history-grouped-list id="grouped-list" 40 <history-grouped-list id="grouped-list"
41 range="[[groupedRange]]" 41 range="[[groupedRange]]"
42 query-start-time="[[queryResult.info.queryStartTime]]" 42 query-interval="[[queryResult.info.queryInterval]]"
43 query-end-time="[[queryResult.info.queryEndTime]]"
44 searched-term="[[queryResult.info.term]]"> 43 searched-term="[[queryResult.info.term]]">
45 </history-grouped-list> 44 </history-grouped-list>
46 </template> 45 </template>
47 </iron-pages> 46 </iron-pages>
48 47
49 <template is="cr-lazy-render" id="dialog"> 48 <template is="cr-lazy-render" id="dialog">
50 <dialog is="cr-dialog"> 49 <dialog is="cr-dialog">
51 <div class="title">$i18n{removeSelected}</div> 50 <div class="title">$i18n{removeSelected}</div>
52 <div class="body">$i18n{deleteWarning}</div> 51 <div class="body">$i18n{deleteWarning}</div>
53 <div class="button-container"> 52 <div class="button-container">
(...skipping 16 matching lines...) Expand all
70 <button id="menuRemoveButton" class="dropdown-item" 69 <button id="menuRemoveButton" class="dropdown-item"
71 disabled="[[!canDeleteHistory_()]]" 70 disabled="[[!canDeleteHistory_()]]"
72 on-tap="onRemoveFromHistoryTap_"> 71 on-tap="onRemoveFromHistoryTap_">
73 $i18n{removeFromHistory} 72 $i18n{removeFromHistory}
74 </button> 73 </button>
75 </dialog> 74 </dialog>
76 </template> 75 </template>
77 </template> 76 </template>
78 <script src="chrome://history/list_container.js"></script> 77 <script src="chrome://history/list_container.js"></script>
79 </dom-module> 78 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/lazy_load.crisper.js ('k') | chrome/browser/ui/webui/browsing_history_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698