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

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

Issue 2656443004: MD History: Add routing for grouped history mode. (Closed)
Patch Set: Review comments Created 3 years, 10 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 12 matching lines...) Expand all
23 #content > * { 23 #content > * {
24 height: 100%; 24 height: 100%;
25 } 25 }
26 26
27 dialog .body { 27 dialog .body {
28 white-space: pre-wrap; 28 white-space: pre-wrap;
29 } 29 }
30 </style> 30 </style>
31 <iron-pages id="content" 31 <iron-pages id="content"
32 attr-for-selected="id" 32 attr-for-selected="id"
33 selected="[[selectedPage_]]" 33 selected="[[selectedPage_]]">
34 fallback-selection="infinite-list">
35 <history-list id="infinite-list" 34 <history-list id="infinite-list"
36 querying="[[queryState.querying]]" 35 querying="[[queryState.querying]]"
37 searched-term="[[queryResult.info.term]]"> 36 searched-term="[[queryResult.info.term]]">
38 </history-list> 37 </history-list>
39 <template is="dom-if" if="[[grouped]]"> 38 <template is="dom-if" if="[[grouped]]">
40 <history-grouped-list id="grouped-list" 39 <history-grouped-list id="grouped-list"
41 range="[[queryState.range]]" 40 range="[[queryState.range]]"
42 query-interval="[[queryResult.info.queryInterval]]" 41 query-interval="[[queryResult.info.queryInterval]]"
43 searched-term="[[queryResult.info.term]]"> 42 searched-term="[[queryResult.info.term]]">
44 </history-grouped-list> 43 </history-grouped-list>
(...skipping 24 matching lines...) Expand all
69 <button id="menuRemoveButton" class="dropdown-item" 68 <button id="menuRemoveButton" class="dropdown-item"
70 disabled="[[!canDeleteHistory_()]]" 69 disabled="[[!canDeleteHistory_()]]"
71 on-tap="onRemoveFromHistoryTap_"> 70 on-tap="onRemoveFromHistoryTap_">
72 $i18n{removeFromHistory} 71 $i18n{removeFromHistory}
73 </button> 72 </button>
74 </dialog> 73 </dialog>
75 </template> 74 </template>
76 </template> 75 </template>
77 <script src="chrome://history/list_container.js"></script> 76 <script src="chrome://history/list_container.js"></script>
78 </dom-module> 77 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/lazy_load.crisper.js ('k') | chrome/browser/resources/md_history/list_container.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698